I have an angular4 application with a form. In this one I have an input to enter a percentage. So, I want to block the input with value between 0 and 100. I tried to add
Simply do this in angular2+ by adding (onkeypress)
= 48 && event.charCode <= 57" name="rateInput">
Tested on Angular 7