$(window).load(function () {
$('#<%=txtDOE.ClientID%>').each(function () {
var $picker = $(this);
$picker.datepicker();
var pickerObject = $picker.data('datepicker');
$picker.on('changeDate', function (ev) {
$picker.datepicker('hide');
});
});
});
Joginder BangerPosted Nov 26, 2014, 3:28 AM
http://api.jqueryui.com/datepicker/#option-minDate
dinesh dineshPosted Nov 26, 2014, 3:24 AM
Joginder BangerPosted Nov 26, 2014, 2:54 AM