2010-03-12 03:18:34 +00:00
|
|
|
<!DOCTYPE html>
|
2008-12-31 01:20:50 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-09-10 12:50:53 +00:00
|
|
|
<meta charset="utf-8">
|
2009-01-19 22:42:58 +00:00
|
|
|
<title>jQuery UI Datepicker - Display inline</title>
|
2010-09-10 12:50:53 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
|
2010-11-12 14:19:26 +00:00
|
|
|
<script src="../../jquery-1.4.4.js"></script>
|
2010-09-10 12:50:53 +00:00
|
|
|
<script src="../../ui/jquery.ui.core.js"></script>
|
|
|
|
<script src="../../ui/jquery.ui.widget.js"></script>
|
|
|
|
<script src="../../ui/jquery.ui.datepicker.js"></script>
|
|
|
|
<link rel="stylesheet" href="../demos.css">
|
|
|
|
<script>
|
2008-12-31 01:20:50 +00:00
|
|
|
$(function() {
|
2010-09-10 12:50:53 +00:00
|
|
|
$( "#datepicker" ).datepicker();
|
2008-12-31 01:20:50 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="demo">
|
|
|
|
|
2009-02-04 01:57:06 +00:00
|
|
|
Date: <div id="datepicker"></div>
|
2008-12-31 01:20:50 +00:00
|
|
|
|
2008-12-30 16:45:42 +00:00
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-09-10 12:50:53 +00:00
|
|
|
<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>
|
2008-12-31 01:20:50 +00:00
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|