Here is a simple timepicker to jQuery UI's datepicker
<script type="text/javascript">
/* <![CDATA[ */
$(function() {
$('#pickerfield').datetime({
userLang : 'en',
americanMode: true,
});
});
/* ]]> */
</script>
<input id="pickerfield" type="text" value="" />
Now I want to know how to add default date more than 2 days and disable all previous dates
Update:- I am talking about time picker like this Time picker
I think you are looking for something like this http://jsfiddle.net/MG6Mb/