Datepicker using jQuery

Hello Everyone,

This is the code which you can use to generate Date picker using jQuery :

<script>
 $(function() {
  $( "#datepicker" ).datepicker();
 });
 </script>

<div class="demo">

<p>Date: <input id="datepicker" type="text"></p>

</div><!-- End demo -->



<div style="display: none;" class="demo-description">
<p>The datepicker is tied to a standard form input field.  </p>
</div><!-- End demo-description -->

No comments:

Post a Comment