jquery-ui/demos/datepicker/dropdown-month-year.html

30 lines
910 B
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!doctype html>
2008-12-30 04:16:51 +00:00
<html lang="en">
<head>
2010-09-10 12:50:53 +00:00
<meta charset="utf-8">
<title>jQuery UI Datepicker - Display month &amp; year menus</title>
2010-09-10 12:50:53 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
2012-09-21 01:41:47 +00:00
<script src="../../jquery-1.8.2.js"></script>
2010-09-10 12:50:53 +00:00
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.datepicker.js"></script>
<link rel="stylesheet" href="../demos.css">
<script>
2008-12-30 04:16:51 +00:00
$(function() {
2010-09-10 12:50:53 +00:00
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
});
2008-12-30 04:16:51 +00:00
});
</script>
</head>
<body>
2009-01-01 00:27:45 +00:00
<p>Date: <input type="text" id="datepicker"></p>
2008-12-30 04:16:51 +00:00
2010-09-10 12:50:53 +00:00
<div class="demo-description">
<p>Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean <code>changeMonth</code> and <code>changeYear</code> options.</p>
2012-09-10 15:33:46 +00:00
</div>
2008-12-30 04:16:51 +00:00
</body>
</html>