I have a simple input box :
<input type="number" class="reference_input" value="1234567" pattern="\d*"
onkeypress="unicode = event.charCode ? event.charCode : event.keyCode;
if(unicode < 48 || unicode > 57){return false;}" />
I need to have type="number"
for android phones to open numeric keyboard by default.
The strange thing is that when I open this page in Chrome I see an auto incrementer field with top and bottom arrow.
Is there a way to remove this field (auto incrementer)?
EDIT :
I just found a similar question : Chrome auto formats input=number