Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Javascript (http://www.velocityreviews.com/forums/f68-javascript.html)
-   -   tab sequence (http://www.velocityreviews.com/forums/t920485-tab-sequence.html)

tony wong 09-28-2005 03:15 AM

tab sequence
 
the tab sequence in upper frame is in order.
1. textbox 1
2. textbox 2

however, once i add refresh lower frame function in onload

function refreshlowerframe()
{window.parent.mainFrame.location.reload();}

<body onload="refreshlowerframe();document.form1.phone_n o.focus();">

then the sequence now is

1. textbox 1
2. IE URL path
3. textbox 1
4. textbox 2

even i add tabindex, it still not go back to previous order.

how can i not let the cursor go up to the IE URL path? Thanks a lot.

Tony



Randy Webb 10-01-2005 01:32 AM

Re: tab sequence
 
tony wong said the following on 9/27/2005 11:15 PM:

> the tab sequence in upper frame is in order.
> 1. textbox 1
> 2. textbox 2
>
> however, once i add refresh lower frame function in onload
>
> function refreshlowerframe()
> {window.parent.mainFrame.location.reload();}
>
> <body onload="refreshlowerframe();document.form1.phone_n o.focus();">
>
> then the sequence now is
>
> 1. textbox 1
> 2. IE URL path
> 3. textbox 1
> 4. textbox 2
>
> even i add tabindex, it still not go back to previous order.
>
> how can i not let the cursor go up to the IE URL path? Thanks a lot.


You can't. The IE URL path is part of the tab sequence and, short of
removing it, you can cannot remove it from that sequence.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly


All times are GMT. The time now is 09:18 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57