Sir,
I have two date fileds .how to validate them
and the date2 should be greater than the date1 how to do it?
1 Answers
The dates in validation field are strings.
You may need to convert to date object when comparing in javascript.
http://stackoverflow.com/questions/14781153/how-to-compare-two-string-dates-in-javascript
Your Answer