Browse Source

Update README.md

Removed quote that was causing Readme.md error
Kevin Redman 11 years ago
parent
commit
adaa2868de
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -596,7 +596,7 @@ Show the current mask definition as a tooltip.
 With this call-in you can override the default implementation of the isComplete function.  
 
 ```javascript
-$("selector).inputmask("Regex", { 
+$(selector).inputmask("Regex", { 
 	regex: "[0-9]*", 
 	isComplete: function(buffer, opts) {
 		return new RegExp(opts.regex).test(buffer.join(''));