Results 1 to 3 of 3

Thread: Rollover Menu Help

  1. #1
    Join Date
    Jun 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Rollover Menu Help

    I downloaded a Javascript rollover multilevel menu from this website, you can see it working at www.finzerroller.com/newsite/about.htm. When you rollover the solutions button that's when the extra meun element appears. I need to get the button to also click to go to another page as well as the rollover menu function. The coding can be downloaded at www.mikehough.com/website.zip. Thank you in advance to whoever is willing to help me...

  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

    Where you have:
    HTML Code:
    <td><a href="#" onMouseover="showmenu(event,linkset[0])" onMouseout="delayhidemenu()"><img src="images/solutions.jpg" width="190" height="21" border="0"></a></td>
    Just change # to whatever page you want it to link to ex:
    HTML Code:
    <td><a href="solutions.htm" onMouseover="showmenu(event,linkset[0])" onMouseout="delayhidemenu()"><img src="images/solutions.jpg" width="190" height="21" border="0"></a></td>
    On another note, in the script where you have:
    Code:
    linkset[0]+='<a href="#"_blank">xx Tech</a>'
    _blank" doesn't belong there and will do nothing, except perhaps cause an error and/or odd behavior for some browsers.
    - John
    ________________________

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

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

    Default

    Thank You!

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
  •