I have a input as follows:
<input id="phone_area_code" maxlength="3" type="number" class="ember-view ember-text-field">
Upon rendering, it automatically adds the increment and decrement buttons as shown below. And because of this, the maxLength doesn't work (eg: if input is 999 and I click increment, it allows 1000)
I tried the following answer:
https://stackoverflow.com/a/22306944
But, no use. How to get rid of these buttons?