aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/datepicker.html
blob: 214c2c8e5afaef23e833dfcb62541898bb6164da (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
34
35
36
37
38
39
40
<!doctype html>
<html lang="en">
<head>
	<title>Simple Datepicker</title>
	<link rel="stylesheet" href="all.css" type="text/css">
	<link rel="stylesheet" href="../../themes/base/ui.all.css" type="text/css">
	<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
	<script type="text/javascript" src="../../ui/ui.core.js"></script>
	<script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
	<script type="text/javascript">
	$(function() {
		$('#d1').datepicker();
		$('#d2').datepicker({numberOfMonths: 3, showButtonPanel: true});
		$('#inl').datepicker();
	});
	</script>
</head>
<body>

<ul class="plugins">
	<li class="plugin">
		Datepicker Simple
		<div>
			<input type="text" id="d1">
		</div>
	</li>
	<li class="plugin">
		Datepicker Multi
		<div>
			<input type="text" id="d2">
		</div>
	</li>
	<li class="plugin">
		Datepicker Inline
		<div id="inl"></div>
	</li>
</ul>

</body>
</html>