aboutsummaryrefslogtreecommitdiffstats
path: root/demos/calendar/buttonbar.html
blob: 28ee693cc314eacba03e5df29425cc527368a2d3 (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
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>jQuery UI Calendar - Display button bar</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">
		$( "#calendar" ).calendar({
			buttons: {
				Today: function() {
					$( this ).calendar( "valueAsDate", new Date() );
				}
			}
		});
	</script>
</head>
<body>

<div id="calendar"></div>

<div class="demo-description">
<p>Display a button for selecting Today's date with the <code>buttons</code> option.</p>
</div>
</body>
</html>