You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
669 B
23 lines
669 B
5 years ago
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>jQuery UI Datepicker - Display inline</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">
|
||
|
$( "#datepicker" ).datepicker();
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
Date: <div id="datepicker"></div>
|
||
|
|
||
|
<div class="demo-description">
|
||
|
<p>Display the datepicker embedded in the page instead of in an overlay. Simply call .datepicker() on a div instead of an input.</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|