A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: Simple website links

  1. #1
    FK's Resident Jakey
    Join Date
    Apr 2002
    Location
    Hamilton, Scotland
    Posts
    55
    Hello all.
    Before i begin, i would like to say, please can the four guys that fought in my last post please do it again, i need a laugh.

    Anyway, is there any way when linking into frames using targets, to open two pages at once? ie. click on a link and the menu opens in the left frame and the main page opens in the main frame at the same time?

    So long and thanks for all the fish!

    ATOCP

  2. #2
    swollen member
    Join Date
    Dec 2000
    Location
    BC, Canada
    Posts
    19
    I'm pretty sure you can. You could call a Javascript function to do it.
    window.frameName.location = "index.htm"
    window.frameName2.location = "othe page.htm"

    im not sure if this is the right syntax though... check http://www.docjavascript.com ... lots of good articles there

  3. #3
    Member
    Join Date
    Jul 2001
    Posts
    44
    I loved that thread it was the most entertaining thread I've seen in a long time..LOL!!!

    Try this:
    .........................

    <html>

    <FRAMESET COLS="120,*" FRAMEBORDER=0 BORDER=0 FRAMESPACING=0>
    <FRAME SRC="yournav.htm" name="mynav"MARGINWIDTH=2>
    <FRAME SRC="yourmain.htm" name="mymain">
    </FRAMESET>

    </html>

    ........................

    Make sure you name your frames. I think this is what you're talking about. Hope this helps.

    Atomic_Punk

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center