You are here: irt.org | FAQ | JavaScript | Frame | Q608 [ previous next ]
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>