diff options
Diffstat (limited to 'demos/datepicker/inline.html')
-rw-r--r-- | demos/datepicker/inline.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/demos/datepicker/inline.html b/demos/datepicker/inline.html index 5682f455e..7139cf9b0 100644 --- a/demos/datepicker/inline.html +++ b/demos/datepicker/inline.html @@ -9,24 +9,24 @@ <link type="text/css" href="../demos.css" rel="stylesheet" /> <script type="text/javascript"> $(function() { - $("#date123").datepicker(); + $("#datepicker").datepicker(); }); </script> </head> <body> - <div class="demo"> -Date: <div id="date123" /></div> +Date: <div id="datepicker" /></div> </div><!-- End demo --> - - <div class="demo-description"> -<p>This is an example of an inline date picker that is embedded in the page instead of opening in an overlay. This is done by calling .datepicker() in a div instead of an input.</p> +<p> +This is an example of an inline date picker that is embedded in the page instead of opening in an overlay. +This is done by calling .datepicker() on a div instead of an input. +</p> </div><!-- End demo-description --> |