I am making a mobile application. I want to implement this function when pressing the key focuses the next input field. I tried a lot of things but nobody seems to work. This is my code. I tried using onClick, but when I touch it, it moves on to the next field.
<input type="number" class="mobile-verify pass" maxlength="1" name="code[]" />
<input type="number" class="mobile-verify pass" maxlength="1" name="code[]" />
<input type="number" class="mobile-verify pass" maxlength="1" name="code[]" />
<input type="number" class="mobile-verify pass" maxlength="1" name="code[]" />
I want to use pure jquery or javascript . Thanks in advance.
source
share