jQuery를 이용한 달력 위젯
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker();
} );
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
</html>
'IT > Develop' 카테고리의 다른 글
MUURI / Responsive, sortable, filterable and draggable grid layouts (0) | 2019.08.26 |
---|---|
CSS Gradient Text / 폰트 그라디언트 적용 (0) | 2019.08.23 |
[Bootstrap]부트스트랩 반응형 제거하는 방법 (0) | 2019.08.23 |