Browse Source

Edited README via GitHub

Robin Herbots 15 years ago
parent
commit
de82bbdde4
1 changed files with 8 additions and 1 deletions
  1. 8 1
      README

+ 8 - 1
README

@@ -137,4 +137,11 @@ $(document).ready(function(){
     $('#test1').inputmask('9999[aaaa]9999');           // 1234abcd1234 or 12341234
     $('#test2').inputmask('[aaaa]9999');               // abcd1234 or 1234
     $('#test3').inputmask('9999[aaaa]');               // 1234 or 1234abcd
-});
+});
+
+numeric input direction
+
+$(document).ready(function(){
+    $('#test').inputmask('€ 999.999.999,99', { numericInput: true });    //   123456  =>  € ___.__1.234,56
+});
+