I have a HTML5 input box (type=number). My requirement is that the user should be able to set the value only through UP & DOWN arrow (spinners). User shouldn't be able to enter the value manually. Is it possible?
Any help is appreciated!
HTML
<tr ng-repeat="listitem in listitems">
<input id="qtyinput" style="width:70px;" type="number" ng-model="listitem.qty" placeholder="Quantity" min='1' value='1'>
</tr>