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

Opening two pages in two frames with one click - can it be done?

Status
Not open for further replies.

PaulChilds

Technical User
May 21, 2002
195
Hello,

I have a website with four frames, whic for simplicity's sake I'll call A, B, C and D.

A is top left (25% width, 25% height)
B is the title bar at the top right (75% width, 25% height)
C is the menu bar bottom left (25% width, 75% height)
D is the main fram where the info appears (75% width, 75% height)

When I click on a link in C, I want the page with info to open in D but also a small image relation to that topic to appear in A.

How, if possible, can I do this?

Thanks.

Paul C

 
Off course:

<a href=&quot;infoFile.htm&quot; target=&quot;A&quot; onClick=&quot;parent.D.location='imageFile.htm';&quot;>Link</a>

or:
<a href=&quot;#&quot; onClick=&quot;parent.A.location='infoFile.htm';parent.D.location='imageFile.htm';&quot;>Link</a>

Hope this helps...

Quasibobo

Don't eat yellow snow!
 
Am I having deja vu? Wasn't this answer posted yesterday?

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top