the HTML
<input class="fr pinPass" type="password" name="pin1" id="pin1_1" tabindex="100"/>
<label>Enter the third number</label>
<br class="cb"/>
<input class="fr pinPass" type="password" name="pin1" id="pin1_2" tabindex="101"/>
<label>Enter the fourth number</label>
<br class="cb"/>
<input class="fr pinPass" type="password" name="pin1" id="pin1_3" tabindex="102"/>
<label>Enter the second number</label>
the current jQuery
$(".pinPass").focus(function () {
$(this).keyup(function(){
$("input").siblings('.pinPass').filter(':first').focus();
});
});
the Problem:
I am trying to set autoFocus on the next input field after keyUp in each input field. So far I;ve come up with solution that keep looping thru until it gets to the last one being selected, or if I use the :first filter, it always return to the first one it finds on the page.
I don't think I can use next(), as it's not the next node in the set. There will always be labels separating each input field.
Any help would be much appreciated.
name="pin1[]"– Mark Nov 1 '10 at 14:16