Results 1 to 5 of 5

Thread: AnyLink JS Drop Down Menu v2.2, open URL in blank window?

  1. #1
    Join Date
    Dec 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default AnyLink JS Drop Down Menu v2.2, open URL in blank window?

    1) Script Title: AnyLink JS Drop Down Menu v2.2

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

    3) Describe problem: Is there a way to make just certain links in a menu open in a new browser window? The URL is http://midiowagrowth.com/new/

  2. #2
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    Find the links you want to open in new windows / tabs and use the following:

    Code:
    <a href="linkhere.html" target="_blank">Link</a>
    target="_blank" is the bit to pay attention to, that will tell the browser to open that link in a new window or tab.

  3. #3
    Join Date
    Dec 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks, but this is the format you have to post links in the script.

    ["Dynamic Drive", "http://www.dynamicdrive.com/"],

    Any ideas?

  4. #4
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    There's probably a better way of doing it, but here's a quick fix, find this line in anylinkmenu.js:

    Code:
    frag+='<li><a href="' + menuobj.items[i][1] + '" target="' + menuobj.linktarget + '">' + menuobj.items[i][0] + '</a></li>\n'
    and replace with:

    Code:
    frag+='<li><a href="' + menuobj.items[i][1] + '" target="_blank">' + menuobj.items[i][0] + '</a></li>\n'

  5. #5
    Join Date
    Dec 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Will this make all the menu items open in a new window? I only want a few items in each menu to open in a new window..

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
  •