jquery-ui/demos/calendar/buttonbar.html

28 lines
652 B
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!doctype html>
2008-12-30 04:16:51 +00:00
<html lang="en">
<head>
2010-09-10 12:50:53 +00:00
<meta charset="utf-8">
<title>jQuery UI Calendar - Display button bar</title>
<link rel="stylesheet" href="../../themes/base/all.css">
2010-09-10 12:50:53 +00:00
<link rel="stylesheet" href="../demos.css">
<script src="../../external/requirejs/require.js"></script>
<script src="../bootstrap.js">
$( "#calendar" ).calendar({
2014-06-19 22:13:20 +00:00
buttons: {
2015-01-18 18:26:19 +00:00
Today: function() {
2014-06-19 22:13:20 +00:00
$( this ).calendar( "valueAsDate", new Date() );
}
}
});
2008-12-30 04:16:51 +00:00
</script>
</head>
<body>
<div id="calendar"></div>
2008-12-30 04:16:51 +00:00
2010-09-10 12:50:53 +00:00
<div class="demo-description">
2014-06-19 22:13:20 +00:00
<p>Display a button for selecting Today's date with the <code>buttons</code> option.</p>
2012-09-10 15:33:46 +00:00
</div>
2008-12-30 04:16:51 +00:00
</body>
</html>