Browse Source

Merge branch '3.x' of https://github.com/RobinHerbots/jquery.inputmask into 3.x

Robin Herbots 11 years ago
parent
commit
438b8df8da
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.  
 With this call-in you can override the default implementation of the isComplete function.  
 
 
 ```javascript
 ```javascript
-$("selector).inputmask("Regex", { 
+$(selector).inputmask("Regex", { 
 	regex: "[0-9]*", 
 	regex: "[0-9]*", 
 	isComplete: function(buffer, opts) {
 	isComplete: function(buffer, opts) {
 		return new RegExp(opts.regex).test(buffer.join(''));
 		return new RegExp(opts.regex).test(buffer.join(''));