jquery-ui/demos/datepicker/multiple-calendars.html

37 lines
1.0 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2008-12-30 04:16:51 +00:00
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>jQuery UI Datepicker - Display multiple months</title>
<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
2010-02-16 02:39:57 +00:00
<script type="text/javascript" src="../../jquery-1.4.2.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../ui/jquery.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({
numberOfMonths: 3,
showButtonPanel: 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>Set the <code>numberOfMonths</code> option to an integer of 2 or more to show multiple months in a single datepicker.</p>
</div><!-- End demo-description -->
2008-12-30 04:16:51 +00:00
</body>
</html>