JQuery DatePicker Example
HTML
<input type="text" name="" id="" class="datepicker" />
<input type="text" name="" id="" class="datepicker1" />
JavaScript
jQuery(document).ready(function () {
//Wire up the JQuery UI date pickers
jQuery(".datepicker").datepicker({});
});