This is my code and it is not working correctly. I want to set minDate to current date. How to do it ?
$("input.DateFrom").datepicker({
changeMonth: true, changeYear: true, dateFormat: 'yy-mm-dd',
maxDate: 'today',
onSelect: function(dateText) {
$sD = new Date(dateText);
$("input#DateTo").datepicker('option', 'minDate', min);
}
minmagically come from in your code? Surely you want to pass$sDinstead. – Anthony Grist Feb 11 at 10:48