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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

frames

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
hi,

i've got a small problem with frames and using the location.href call.

the framset is fairly simple:

<frameset rows=80,* cols=80,*>
<frame name=upleftcorner src=????.html>
<frame name=up src=????.html>
<frame name=left src=menuframe.html>
<frame name=main src=????.html>
</frameset>

so this is the frameset from index.html then in the leftframes there's another frameset:


<frameset rows=*,80>
<frame name=leftup src=a.html>
<frame name=leftdown src=b.html>
</frameset>

in the files c there's an onload event in the body which should load an empty.html file in the leftdown frame...

in a.html is an link that loads c.html in frame leftup which when loaded should load an empty file in leftdown frame.

i've tried: top.leftdown.location=empty.html (or location.href=empty.html... but that doesn't work..

How can I get this to work?
 
may be document.frames.upleftcorner.document.frames.leftdown
or just document.frames.upleftcorner.leftdown? regards, vic
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top