/t5/coldfusion-discussions/date-validation-preventing-future-dates/td-p/460447Nov 07, 2007
Nov 07, 2007
Copy link to clipboard
Copied
Hello,
How do you validate on future dates. I have a form where I
don't want things entered ahead of today's date. Anyone have a
validation that does this?
/t5/coldfusion-discussions/date-validation-preventing-future-dates/m-p/460450#M41821Nov 08, 2007
Nov 08, 2007
Copy link to clipboard
Copied
LATEST
create javascript date obj that store today date
convert date from from to javascript date obj as well
then you can simple use > or < to check form date is in
the future or not.
var today = new Date();
var a = new Date(year,month,day);
if (a > today) alert("no future date is allowed");