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

Link guestion??? 1

Status
Not open for further replies.

juuso79

Programmer
Nov 15, 2001
22
FI
How can I make a link witch opens two pages at the same time in differend frames. I have a three frames link is in the frame one and when you use it it should open a picture in frame two and a info text in frame three. I could really use your help. Thanks!
 
Use this:

function loadTwo(first, second) {
parent.frame1.location.href = first;
parent.frame2.location.href = second;
}

<a href=&quot;#&quot; onclick=&quot;loadTwo('one.html', 'two.html')&quot;>load 2 pages @ once</a>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top