Can we use the same text hyperlinked to 2 different URL's?

  • Thread starter Thread starter divya
  • Start date Start date
D

divya

I have divinded the page into three frames.Now on one frame there are
links .Now based on the link the user clicks I want 2 different pages
to be loaded in the other 2 frames simultaneously.Can we have Hyperlink
to two pages with the other two frames as target frames let me know can
this be done and how??
 
Here's how I do it. I want every page I target in the Main frame to bring
its own Banner frame. Instead of putting both hyperlinks into one navigation
command, I let the main page call its own banner, like this (at the end of
the <head> section):

<script language="JavaScript">
<!--
parent.parent.frames[0].location.href="banner_classnotes.htm"
//-->
</script>
 
Back
Top