jquery-ui/demos/datepicker/other-months.html

31 lines
817 B
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!doctype html>
<html lang="en">
<head>
2010-09-10 12:50:53 +00:00
<meta charset="utf-8">
<title>jQuery UI Datepicker - Dates in other months</title>
<link rel="stylesheet" href="../../themes/base/all.css">
<script src="../../external/jquery/jquery.js"></script>
<script src="../../ui/core.js"></script>
<script src="../../ui/widget.js"></script>
<script src="../../ui/datepicker.js"></script>
2010-09-10 12:50:53 +00:00
<link rel="stylesheet" href="../demos.css">
<script>
$(function() {
2010-09-10 12:50:53 +00:00
$( "#datepicker" ).datepicker({
showOtherMonths: true,
selectOtherMonths: true
});
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
2010-09-10 12:50:53 +00:00
<div class="demo-description">
<p>The datepicker can show dates that come from other than the main month
being displayed. These other dates can also be made selectable.</p>
2012-09-10 15:33:46 +00:00
</div>
</body>
</html>