Friday, October 31, 2014

Date Picker with Jquery

image

 

Jquery made it easy for making a date picker. Here is a sample code used in http://formatdelimeters.azurewebsites.net/Home/About.


<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>

<h3>Pick a date</h3>
<p>Date: <input type="text" id="datepicker"></p>
<p>Use this area to provide additional information.</p>

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

No comments:

Post a Comment