Allen
Member since Jul 30, 2013
- Profile: /members/11095-allen.htm
- URL: http://www.driftlessramblings.com
- Comments: 1
Recent Blog Comments By Allen
-
Applying Masks Using Regular Expressions In Javascript
Posted on Jul 30, 2013 at 2:59 PM
"mm": (this.getMonth().toString().length == 1) ? ("0" + this.getMonth()) : this.getMonth() + 1 should be "mm": ((this.getMonth() +1).toString().length == 1) ? ("0" + (this.getMonth() + 1)) : (this.getMonth() + 1) To properly handle 'October'... read more »