jQuery Date Picker example
Required JavaScript jQuery files
- jquery-1.3.2.js
Click jquery-1.3.2.js to view jquery file - ui.core.js
Click ui.core.js to view jquery file - ui.datepicker.js
Click ui.datepicker.js to view jquery file 2
1441
Date:
The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a date, click elsewhere on the page (blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value.
CSS
JavaScript
$(function() {
$("#datepicker").datepicker();
});
HTML
<p>Date: </p>
<p>The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a date, click elsewhere on the page
(blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value.</p>
