Log in

View Full Version : Resolved Multi-Links



Anon
01-10-2009, 04:36 PM
Heyo,
Been a while since I posted here, and just thought I might say hello with an utterly confounding problem :D

Okay, multi-links.
Wha?

Basically, what I am trying to do is get one link to go to multiple pages. The browser does not let you do this, because you can't open multiple links on the same page in real life, but as par usual, I am using frames, or rather iframes. :rolleyes:

Point being that I am trying to use one link to change the content of multiple iframes, and I need help.

Cheers,
Anon

Edit: Probably not important, but the three links I am trying to combine are:

<a href="games.html" target="content">Games</a>
<a href="titles/games.html" target="title">Games</a>
<a href="img/games.png" target="picture">Games</a>

Ciao!

jscheuer1
01-10-2009, 04:48 PM
<a href="games.html" target="content"
onclick="window.open('titles/games.html', 'title');
window.open('img/games.png', 'picture');return true;"
>Games</a>

Anon
01-11-2009, 07:09 PM
Thanks!