mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
34 lines
991 B
HTML
34 lines
991 B
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">
|
|
<link rel="stylesheet" href="../demos.css">
|
|
<script src="../../external/requirejs/require.js"></script>
|
|
<script src="../bootstrap.js">
|
|
var now = new Date(),
|
|
dateMin = new Date( now.getFullYear(), now.getMonth(), now.getDate() + 1 ),
|
|
dateMax = new Date( now.getFullYear(), now.getMonth(), now.getDate() + 8 );
|
|
|
|
dateMin = new Date( 2008, 2 - 1, 29 );
|
|
dateMax = new Date( 2008, 12 - 1, 7 );
|
|
|
|
|
|
$( "#calendar" ).calendar({
|
|
min: dateMin,
|
|
max: dateMax,
|
|
value: new Date( 2008, 1 - 1, 4 )
|
|
});
|
|
</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 (<code>new Date(2009, 1 - 1, 26)</code>).</p>
|
|
</div>
|
|
</body>
|
|
</html>
|