Hi,
How would i change this to check if the date in the field is at least 2 days in front of today's? Must work with this format yyyy-mm-dd
Cheers,
Adam
How would i change this to check if the date in the field is at least 2 days in front of today's? Must work with this format yyyy-mm-dd
Code:
if (form.arrivaldate.value == "") {
alert( "Please make sure your arrival date is at least 2 days in front of today's date" );
form.arrivaldate.focus();
return false ;
}
Adam
Comment