Browse Source

Merge branch 'dev'

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

+ 11 - 4
README.md

@@ -289,15 +289,22 @@ 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
-
-Just add the dir="rtl" attribute to the input element
+## Supported markup options
+### RTL attribute
 
 ```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