|
|
Q774 How do I maintain a tab order if form fields in browsers that do not support tabindex?
irt.org | Knowledge Base | JavaScript | Form 2 | Q774 [ previous next ] Q774 How do I maintain a tab order if form fields in browsers that do not support tabindex?If the data has been changed, then when the enter key is pressed the form fields onChange event handler is tripped. You can use this to set the focus on another form field:
Alternatively, you can use the onBlur event handler to trap something similar:
However, not all of the older browsers/operating systems support the onBlur event handler. |
-- div -->
|