Tabbing between framesets

I have frames within framesets and want to know how to tab between them. Have tried a combination of keys which don’t work. Any ideas/

Subject: Tabbing between framesets

You can try something like this:

var fp = parent.Frame2.document.forms[0];

if (event.keyCode == 09) 'tab

{

fp.Field1.focus();

}

A code like this (under onKeyDown of your “last” field on Frame1) should “tab” to Field1 on Frame2.

HTH,

Simeon

Subject: RE: Tabbing between framesets

Thanks for your reply but we need a keyboard shortcut for users which tabs from view to view.