I have a input. I want only numeric values. And I want there to be six numbers only. How do i do it? I have:
<input type="number" placeholder="YYMMDD" id="myKadA" maxlength="6" style="width:90px !important" onchange="checkMyKad()" size="8" class="form-control block-centered ic-input" required>
There is a css to remove the scroll bar from the input boxes.
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: textfield;
}
Previously it was input type="text"
and maxlength="6"
limited it to six chars long. How do i now specify a number 6 digit only