mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
f88a06352a
Improve render day cell mechanism.
39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery UI Calendar - Restrict date range</title>
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
|
<script src="../../external/jquery/jquery.js"></script>
|
|
<script src="../../external/globalize/globalize.js"></script>
|
|
<script src="../../external/date.js"></script>
|
|
<script src="../../external/localization.js"></script>
|
|
<script src="../../ui/core.js"></script>
|
|
<script src="../../ui/widget.js"></script>
|
|
<script src="../../ui/button.js"></script>
|
|
<script src="../../ui/calendar.js"></script>
|
|
<script src="../../ui/position.js"></script>
|
|
<link rel="stylesheet" href="../demos.css">
|
|
<script>
|
|
$(function() {
|
|
var now = new Date(),
|
|
dateMin = new Date( now.getFullYear(), now.getMonth(), now.getDay() + 1 ),
|
|
dateMax = new Date( now.getFullYear(), now.getMonth(), now.getDay() + 8 );
|
|
|
|
$( "#calendar" ).calendar({
|
|
min: dateMin,
|
|
max: dateMax
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="calendar"></div>
|
|
|
|
<div class="demo-description">
|
|
<p>Restrict the range of selectable dates with the <code>min</code> and <code>max</code> options. Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)).</p>
|
|
</div>
|
|
</body>
|
|
</html>
|