Browse Source

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

Robin Herbots 11 years ago
parent
commit
8c9b407ded
1 changed files with 2 additions and 2 deletions
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -70,8 +70,8 @@ Any option can also be passed through the use of a data attribute. Use data-inpu
 ```
 ```
 ```javascript
 ```javascript
 $(document).ready(function(){
 $(document).ready(function(){
-   $(example1).inputmask("99-9999999");
-   $(selector).inputmask("Regex");
+   $("#example1").inputmask("99-9999999");
+   $("#example2").inputmask("Regex");
 });
 });
 ```
 ```