I'm working in IE 11 browser and I want to restrict the input number field to 3 digits with 5 decimal places. I tried the following
<input type="number" [(ngModel)]="amount" maxlength="3" />
The problem I face is it will allow me to add only 3 digits with no decimals. I tried to add pattern but in IE its not supporting (Angular-2.4). How to handle this?