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

Link to multiple frames 1

Status
Not open for further replies.

cobrien11

Technical User
Jul 14, 2000
110
I have 3 frames on my page and when i press a link in the first frame i want different pages to load in the 2nd & 3rd frames.
I understand how to link to a 2nd frame, but to 2 at once?

Can anyone help. (dreamweaver 3)
Thanks.

 
use javascript

have the link to one of the frames as a href link and the second one as javascript function that u call with the onClick Function

here is the function

Code:
 function toped(holed) {

 var tested = holed
 parent.topFrame.location= tested

}
For the onClick Event

Code:
 onClick="toped('top_who.htm')"

regards ::)
Unicorn11
abhishek@tripmedia.com

[red]Nothing is permanent in life except Change[red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top