javascript equivalent
I need the javascript equivalent to
IF Date() BETWEEN 1/1/2003 AND 3/30/2003 THEN
......
END IF
Also I need a
IF NOT ISDATE(document.frmUserInput.Date1.Value) THEN
.....
END IF
I'm not able to find much info on dates and whether there is a between operator in javascript?
|