Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q608 How can I skip an IFRAME when tabbing through the elements?

irt.org | Knowledge Base | JavaScript | Frame | Q608 [ previous next ]

Q608 How can I skip an IFRAME when tabbing through the elements?

One way would be:

<form>

<input type="text">
<input type="text" onBlur="this.form.next.focus()">

<iframe></iframe>

<input type="text" name="next">
<input type="text">

</form>

In Internet Explorer 4 this should skip the IFRAME:

<form>

<input type="text" tabindex="1">
<input type="text" tabindex="2">

<iframe></iframe>

<input type="text" tabindex="3">
<input type="text" tabindex="4">

</form>

Feedback on 'Q608 How can I skip an IFRAME when tabbing through the elements?'


Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.