Browse Source

Update README

Robin Herbots 14 years ago
parent
commit
303154bce8
1 changed files with 7 additions and 1 deletions
  1. 7 1
      README

+ 7 - 1
README

@@ -187,7 +187,13 @@ $(document).ready(function(){
    $("#date").inputmask("date");       => equals to    $("#date").inputmask("d/m/y");
    $("#date").inputmask("date");       => equals to    $("#date").inputmask("d/m/y");
 });
 });
 
 
-or use the dd/mm/yyyy alias of the data alias:
+or use the dd/mm/yyyy alias of the date alias:
 $(document).ready(function(){
 $(document).ready(function(){
    $("#date").inputmask("dd/mm/yyyy");       => equals to    $("#date").inputmask("d/m/y");
    $("#date").inputmask("dd/mm/yyyy");       => equals to    $("#date").inputmask("d/m/y");
+});
+
+auto uppercasing inputmask
+
+$(document).ready(function(){
+   $("#test").inputmask("AAAA");       => abcd 		=> ABCD
 });
 });