Skip to content
Snippets Groups Projects
Commit c17874d6 authored by Robin Herbots's avatar Robin Herbots
Browse files

modified: README.md

parent 2880d4a7
Branches
Tags
No related merge requests found
......@@ -540,7 +540,7 @@ $(document).ready(function(){
```javascript
$(document).ready(function(){
$("#numeric").inputmask("decimal");
$("#numeric").inputmask("non-negative-decimal");
$("#numeric").inputmask("decimal", { allowMinus: false });
$("#numeric").inputmask("integer");
});
```
......@@ -571,6 +571,14 @@ $(document).ready(function(){
});
```
Allow minus and/or plus symbol
```javascript
$(document).ready(function(){
$("#numeric").inputmask("decimal", { allowMinus: false });
$("#numeric").inputmask("integer", { allowMinus: false, allowPlus: true });
});
```
### other aliases
An ip adress alias for entering valid ip-addresses.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment