Link target two different frames?

liunx

Guest
I was wondering if it is possible to have one button, change the content of two different frames. <br />
<br />
For example. Clicking on the About Us button, can I have the content in the middle frame that says welcome, and the bottom frame that says News & Events, change to different content for both frames using the same button and only one click?<br />
<br />
For reference please view the page that loads after hitting enter:<br />
<br />
<!-- m --><a class="postlink" href="http://www.desi-9.com/sagel/mopi">http://www.desi-9.com/sagel/mopi</a><!-- m --><br />
<br />
<br />
Thanks for your time,<br />
<br />
Ronin D.<!--content-->perhaps something like this....<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"void(0); return false" onClick= "parent.frames.mainframename.location='http://www.yahoo.com'; parent.frames.bottomframename.location='http://www.eye4u.com'">click here</a><!--content-->Actually Doc, the 'return false' negates the 'void(0)'.<br />
Try:<br />
<a href=http://www.htmlforums.com/archive/index.php/"Javascript:void(0)" onClick= "parent.frames.mainframename.location='http://www.yahoo.com'; parent.frames.bottomframename.location='http://www.eye4u.com'">click here</a><!--content-->ah, good catch jon!<!--content-->Thanks guys, everything works great now!<br />
<br />
-Ronin D.<!--content-->
 
Back
Top