Link to home
Start Free TrialLog in
Avatar of ditkis
ditkis

asked on

Tabbing through the page / iframe problem

Experts,

I have reloading iframe inside the page.
Each time it reloads (every 30 sec) it puts the focus on address string of the browser (IE 6).
If you filling out the web form in that moment, it jumps to the address string next time you click TAB key.

How can I avoid those tab jumpings?

Thanks.
Avatar of superm401
superm401

Please post your code.
Avatar of ditkis

ASKER

That's my Iframe's html peice:

   <html>
   <head>
   <script type="text/javascript">
   function pageReLoad() {
     window.location.reload();
   }
   </script>
   </head>
   <body onload="setTimeout('pageReLoad()',30000);">
   ..... SOME CODE .....  
   </body>
   </html>

Iframe inclusion into parent html is standard.
ASKER CERTIFIED SOLUTION
Avatar of dakyd
dakyd

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ditkis

ASKER

It is works, but now I have "pop-up" sound click every 30 secs, is there a way to rid of it?
Sorry, didn't notice your comment until now.  The "pop up" sound is system generated, there's no way to turn it off that I know of.