Select present and future dates only
Hello, I wanted to ask if there is a way to have someone only be able to select a date that is today or a later date but not past dates. Is this possible? Thank you in advance.
Hello, I wanted to ask if there is a way to have someone only be able to select a date that is today or a later date but not past dates. Is this possible? Thank you in advance.
Hi @grodlegacy ,
If your requirement is to restrict the author to not select a past date then it could be achieved with the minDate property with value as "today". Or you can achieve it using Jquery:
$(function() {
$( "#datepicker" ).datepicker({ minDate: 0});
});
Regards,
SK
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.