Results 1 to 3 of 3

Thread: scroller that opens in new window?

  1. #1
    Join Date
    Jun 2005
    Location
    Canada
    Posts
    68
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default scroller that opens in new window?

    I am looking for a j-script that scrolls in a specified area of a page and when the links are clicked they will open to the new page without being embedded in an iframe. I have tried the iframe scroller which delivers the impact I want but when a link is clicked it opens within the originating page which is not acceptible.
    The content I am looking to place is located at http://www.asseen-ontvsite.com/external.htm

    I have also tried the Document-in-Document script but it does not pick up the entire table and seems to realign the table bits that it does pick up.

    Scrolling is preferred static will do if that is all I can achieve. Thanks

    D

  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

    To open a link in a new window from anywhere:

    HTML Code:
    <a href="somepage.htm" target="_blank">Link Text</a>
    To open a link full page in the current window, from anywhere within that page, including from inside a frame or iframe:

    HTML Code:
    <a href="somepage.htm" target="_top">Link Text</a>
    - John
    ________________________

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

  3. #3
    Join Date
    Jun 2005
    Location
    Canada
    Posts
    68
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default

    Brilliant! This is what I like about this forum. One gets the pointed answers necessary to keep going.
    I was not familiar enough with iframe but I have installed it and it is working perfectly.
    Thank you for your help!

    D

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
  •