Search Results

1
vote

Javascript: how to validate dates in format MM-DD-YYYY?

You can simplify it somewhat by changing the first two lines of the function to this: var matches = this.match(/^([0-9]{2})\/([0-9]{2})\/([0-9]{4})$/); Or, just ch …