Tagged Questions
0
votes
0answers
686 views
jQuery onKeyPress focus next form element
i have a form something like:
<form action="">
Name:<input type="text" id="name" onkeypress="if(KeyPress(event)==13)FocusNext(this);" />
Pass:<input type="text" id="Pass" ...
0
votes
3answers
6k views
Setting the focus to the next input in jQuery?
I've currently got a script that'll check for the value of a select box, and then enable a text field right next to it, and then hopefully set focus.
I have this at the moment which works fine at ...