|
-
Jul 8th, 2001, 02:47 AM
#1
Thread Starter
New Member
How do I target 2 frames with one click
How do I target two frames with a singel click?
-
Jul 8th, 2001, 11:12 AM
#2
how about an example of what you mean?
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Jul 8th, 2001, 11:19 AM
#3
Fanatic Member
Try this, if this is what you are talking about.
Code:
<frameset cols="20%, 80%">
<frame src="page1.html" name="nav">
<frame src="page2.html" name="main">
</frameset>
<script>
function go(url1, url2)
{
parent.nav.location.href = url1;
parent.main.location.href = url2;
}
<script>
<a href="javascript:go('page3.html','page4.html')">Change Pages</a>
Alcohol & calculus don't mix.
Never drink & derive.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|