Results 1 to 3 of 3

Thread: mmenu javascript menu dropdown help needed!!

  1. #1
    Join Date
    Jun 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default mmenu javascript menu dropdown help needed!!

    I am in need of some help to get a drop down link to open in a new window...

    Here is a code snippet from the javascript I am messing with, I have seen this on MANY websites, but never see anyone open a new window with it.

    --------------
    window.mm_menu_0307152336_0 = new Menu("root",150,17,"Verdana, Arial, Helvetica, sans-serif",10,"#FFFFFF","#000000","#9c9c9c","#e7e7e7","left","middle",3,0,400,-5,7,true,true,true,0,true,true);
    mm_menu_0307152336_0.addMenuItem("2006 Annual Meeting","location='http://www.cytokineresearch.com/2006/'");
    mm_menu_0307152336_0.addMenuItem("Past Meetings","location='../pages/page3b.htm'");
    mm_menu_0307152336_0.fontWeight="bold";
    mm_menu_0307152336_0.hideOnMouseOut=true;
    mm_menu_0307152336_0.bgColor='#333333';
    mm_menu_0307152336_0.menuBorder=1;
    mm_menu_0307152336_0.menuLiteBgColor='#FFFFFF';
    mm_menu_0307152336_0.menuBorderBgColor='#9E8659';
    --------------

    I would like to open the link in red in a new window... but cant seem 2 figure out how to do it.... Can anyone help me out???

  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

    These menus can be tricky because what each one can do depends upon their coding and what you have shown here appears only to be the configuration. However, if it can be done easily, this is how to do it:

    Code:
    mm_menu_0307152336_0.addMenuItem("2006 Annual Meeting","window.open('http://www.cytokineresearch.com/2006/')");
    - John
    ________________________

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

  3. #3
    Join Date
    Jun 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    John... Thanks!!!!

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
  •