5
I need this input to receive only numbers:
<input class="form-control input-sm " placeholder="número" maxlength="4" type="text" ng-model="numero.nJogo" />
This I need to receive only values with this formatting (20.00)
<input class="form-control input-sm" placeholder="valor" maxlength="5" type="text" ng-model="numero.valor" />
Didn’t see the preview before posting?
– brasofilo
You can, as a suggestion, change the type of your input to number and let the browser validate it for you.
– user13603