Results 1 to 8 of 8

Thread: Displaying a page in 2nd frame

Hybrid View

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Feb 2002
    Location
    Hampton Beach
    Posts
    513

    Question Displaying a page in 2nd frame

    I have created three frames. The three frames are named Menu, Body and Header.

    In my menu frame I have a menu. When I click on an item I want to display a specfied URL into the Body Frame... How can I do this using javascript?

  2. #2
    Lively Member
    Join Date
    Dec 2002
    Location
    southwest pennsylvania
    Posts
    65
    i think it goes something like this...

    parent.body.location=URL

    again, im not too sure.

    also, its not wise to name anything with keywords
    if you choose not to decide you still have made a choice!

    RUSH rocks!

  3. #3
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Displaying a page in 2nd frame

    Originally posted by JohnSmith
    I have created three frames. The three frames are named Menu, Body and Header.

    In my menu frame I have a menu. When I click on an item I want to display a specfied URL into the Body Frame... How can I do this using javascript?
    Code:
    <a href="#" onClick="javascript:parent.body.location = 'http://www.vbforums.com';">Click here</a>
    The other way is to:

    Code:
    <a href="http://www.vbforums.com/" target="body">

  4. #4
    Frenzied Member Rick Bull's Avatar
    Join Date
    Apr 2002
    Location
    England
    Posts
    1,444
    Yeah like mendhak said you should use target if you can use plain html (taget) as not everyone has JS enabled (10-15% apparently)

  5. #5
    Lively Member
    Join Date
    Dec 2002
    Location
    southwest pennsylvania
    Posts
    65
    hmm..... *goes off a bridge*, maybe someone will copy me again...
    if you choose not to decide you still have made a choice!

    RUSH rocks!

  6. #6

  7. #7
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    He's mad because I 'copied' him.

  8. #8
    Frenzied Member Rick Bull's Avatar
    Join Date
    Apr 2002
    Location
    England
    Posts
    1,444
    Oh, but not really, you explained it more.

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