Declare todaydatedateToday variable and use Date() function to set it.. then use that variable to assign to minDate which is parameter of datepicker.
var dateToday = new Date();
var dateToday = new Date();
$(function() {
$( "#datepicker" ).datepicker({
numberOfMonths: 3,
showButtonPanel: true,
minDate: dateToday
});
});
That's it... Above answer was really helpful... keep it up guys..