Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Which frame will load first

Status
Not open for further replies.

sqoti

Programmer
Dec 1, 2000
50
US
I have a window that has a list of links for the user to select. Once they select the link, it does it's processing and loads up in the same window two frames. Is there a way to control which frame loads first?
 
i suppose you could put an onLoad event in the page you want to load first...

say you want pageA.html to load into frame1 and then pageB.html into frame2 afterwards, you could put something like onLoad=&quot;top.frame2.location.href='pageB.html';&quot; into the <body> tag of pageA.html

this would load pageB when pageA has finished.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top