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!

Links

Status
Not open for further replies.

tomothy

Technical User
Oct 30, 2001
40
GB
Heres a stupid question for you! Is there any way you can have a HTML link that opens two different HTML docs into two different frames? If I can't use simple HTML is there any DHTML, JavaScript etc. that may be able to help?

Thank you for your time
Andrew

 
Here's an example.
Code:
<head>
<script Language=&quot;JavaScript&quot;>
<!--
function navFrames(url_ref1,url_ref2) {
  parent.framename1.location.href = url_ref1
  parent.framename2.location.href = url_ref2
}
//-->
</script>
</head>


<a href=&quot;javascript:navFrames('[URL unfurl="true"]www.google.com','www.msn.com')>Show[/URL] me 2 Search Engines</a>

ToddWW
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top