Advanced Search

Results 1 to 3 of 3

Thread: Tabbed Document Open in New Window

  1. #1
    Join Date
    Jul 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Tabbed Document Open in New Window

    1) Script Title: Tabbed Document Viewer

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...bdocviewer.htm

    3) Describe problem: At the bottom of the tabbed window, there is a checkbox to allow the tab to open in a full browser window. How do I make it open in a new window so that I do not lose people visiting my site?

    Thanks!

  2. #2
    Join Date
    Aug 2004
    Posts
    9,879
    Thanks
    3
    Thanked 956 Times in 945 Posts
    Blog Entries
    15

    Default

    Sure, just replace the line:

    Code:
    window.location=selectedtablink
    with:

    Code:
    window.open(selectedtablink)
    This changes the behavior of the checkbox so checking it causes the link to open in a new window, instead of the current browser window.

  3. #3
    Join Date
    Jul 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for the quick reply!

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
  •