Results 1 to 3 of 3

Thread: Multi-Links

  1. #1
    Join Date
    Mar 2008
    Posts
    9
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Talking Multi-Links

    Heyo,
    Been a while since I posted here, and just thought I might say hello with an utterly confounding problem

    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.

    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:
    Code:
    <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!
    Last edited by Anon; 01-11-2009 at 07:09 PM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Code:
    <a href="games.html" target="content" 
    onclick="window.open('titles/games.html', 'title');
    window.open('img/games.png', 'picture');return true;"
    >Games</a>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    Anon (01-11-2009)

  4. #3
    Join Date
    Mar 2008
    Posts
    9
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    Thanks!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •