This Blog is created and maintained for personal use. If any of these posts are useful to other, then i am very happy. Please share your thoughts and ideas to improve this blog.
function
isValidDate(sText) {
04
var
reDate = /(?:0[1-9]|[12][0-9]|3[01])\/(?:0[1-9]|1[0-2])\/(?:19|20\d{4})/;
05
return
reDate.test(sText);
06
}
Post a Comment
No comments:
Post a Comment