Description
I have used autotab version 1.9.2 simply to tab through date fields for date of birth.
DD -tab-> MM -tab-> YYYY -end
<input type="tel" autocomplete="bday-day" class="dobi primary-dobi" id="dobDD" maxlength="2" name="DateOfBirthDay" placeholder="dd" required="required" size="2"> <input type="tel" autocomplete="bday-month" class="dobi primary-dobi" id="dobMM" maxlength="2" name="DateOfBirthMonth" placeholder="mm" required="required" size="2"> <input type="tel" autocomplete="bday-year" class="dobi primary-dobi" id="dobYYYY" maxlength="4" name="DateOfBirthYear" placeholder="yyyy" required="required" size="4">
Our problem is that once has reached maxlength you cant select the text or tab (which selects) and type over a mistake. Is there a work around for this, without removing type tel?