aboutsummaryrefslogtreecommitdiffstats
path: root/demos/calendar/min-max.html
blob: b3036b8739ca8b500421575362f59f44e8a2d7bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!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>