Results 1 to 4 of 4

Thread: Anylink help

  1. #1
    Join Date
    Apr 2008
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Anylink help

    1) Script: Anylink Drop down menu
    2) Anylink
    3)
    Alright I'm trying to figure out how to have Anylinks drop down menu's links open up the page to a Contentwrapper or frame. I've tried to put targets in to point it, I've tried the onclick in the menus but I can't seem to get it to work.

    menu1[1]='<a href="http://www.freewarejava.com" target="content">Medium Pressure</a>'

    Even tried adding this in but doesn't work any chance any of you guys can help me..I just don't want it to open up a new window everytime...
    <onClick="document.location.href='Main Page.html';">Medium Pressure</a>'
    Last edited by Demthios; 06-29-2008 at 04:32 PM. Reason: Added Link

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.

  3. #3
    Join Date
    Apr 2008
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry about that.

  4. #4
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Adding target as you have above should work. For example, the below would open the menu item in a new window:

    Code:
    <a href="http://www.freewarejava.com" target="_new">Medium Pressure</a>
    Make sure the HTML code:

    Code:
    <a href="http://www.freewarejava.com" target="content">Medium Pressure</a>
    on its own, directly added to the page as HTML works the way you want it to (ie: opens Freewarejava.com in the FRAME called "content"). If it does, then moving the above code into the script should work just the same, as the script simply outputs that HTML as is.

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
  •