Datepicker in jQuery 
Here is the code for Datepicker in jQuery.
you dont have to download any files for this.

//Datepicker in jQuery 
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <meta charset="utf-8" />
  <title>JQuery Demo</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>  
<style>
    .datepicker{  
    }
  </style>
  
  <script>
  $(function() {
    $( ".datepicker" ).datepicker();
  });
  </script>
    </head>
    <body>
        <p>Birth Date: <input type="text" class="datepicker" /></p>
    </body>      
  
</html>

 

By Sri

Leave a Reply

Your email address will not be published. Required fields are marked *