mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
22 lines
551 B
HTML
22 lines
551 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery UI Calendar - Default functionality</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();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="calendar"></div>
|
|
|
|
<div class="demo-description">
|
|
<p>The calendar is a widget for selecting a date using a visual calendar representation.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|