Browse Source

update readme

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

+ 11 - 2
README.md

@@ -289,15 +289,24 @@ This can be usefull when implementing an alias, ex. decimal alias, autofill the
 see jquery.inputmask.extensions.js for some examples
 
 
-## Markup options
-### RTL input
+## Supported markup options
+### RTL attribute
 
 Just add the dir="rtl" attribute to the input element
 
 ```html
 <input id="test" dir="rtl" />
 ```
+### readonly attribute
 
+```html
+<input id="test" readonly="readonly" />
+```
+### disabled attribute
+
+```html
+<input id="test" disabled="disabled" />
+```
 
 ## Compiling with Google Closure Compiler