jquery-ui/demos/datepicker/dropdown_month_year.html

35 lines
1002 B
HTML
Raw Normal View History

2008-12-30 04:16:51 +00:00
<!doctype html>
<html lang="en">
<head>
2008-12-31 22:16:02 +00:00
<title>jQuery UI Datepicker - Month &amp; Year Menus Demo</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
2009-01-13 00:49:10 +00:00
<script type="text/javascript" src="../../jquery-1.3rc2.js"></script>
2008-12-30 04:16:51 +00:00
<script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" />
2008-12-30 04:16:51 +00:00
<script type="text/javascript">
$(function() {
2009-01-01 00:27:45 +00:00
$('#datepicker').datepicker({
changeMonth: true,
changeYear: true
});
2008-12-30 04:16:51 +00:00
});
</script>
</head>
<body>
<div class="demo">
2008-12-30 04:16:51 +00:00
2009-01-01 00:27:45 +00:00
<p>Date: <input type="text" id="datepicker"></p>
2008-12-30 04:16:51 +00:00
</div><!-- End demo -->
<div class="demo-description">
<p>This datepicker has an optional month and year dropdown added to make it easier to navigate through large timeframes. This is done by adding the changeMonth:true and changeYear:true options.</p>
</div><!-- End demo-description -->
2008-12-30 04:16:51 +00:00
</body>
</html>