Results 1 to 3 of 3

Thread: Need a drop down menu that allows...

  1. #1
    Join Date
    Jan 2007
    Posts
    181
    Thanks
    5
    Thanked 3 Times in 3 Posts

    Default Need a drop down menu that allows...

    Hello - I need a drop down menu that allows the use of image rollover as well.

    I am currently using the anylink css drop down but for some reason it will not permit my roll overs to work properly.

    i have that running on : http://www.buildnclick.com/indexnewnav.html

    Maybe you can figure out why that isn't working, but i cant.

    It will roll the images over, but not back on the Mouseout function.

    (if this counts as multiple posting, sorry)
    Thanks!
    Jon

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

    Default

    The script will override any onMouseout event inserted into the anchor links, yes. You can get around this in your case by changing the code:

    Code:
    function delayhidemenu(){
    delayhide=setTimeout("dropmenuobj.style.visibility='hidden';",disappeardelay)
    }
    inside anylink.js to:

    Code:
    function delayhidemenu(){
    MM_swapImgRestore()
    delayhide=setTimeout("dropmenuobj.style.visibility='hidden';",disappeardelay)
    }
    Assuming the code in red is what you want to run onMouseout of the anchor links.

    BTW, please note that your page is currently in violation of our usage terms, since the credit notice doesn't appear inline on the page. Please reinstate the credit notice: http://www.dynamicdrive.com/notice.htm

  3. The Following User Says Thank You to ddadmin For This Useful Post:

    Jon101 (04-21-2008)

  4. #3
    Join Date
    Jan 2007
    Posts
    181
    Thanks
    5
    Thanked 3 Times in 3 Posts

    Default

    Thanks much for the help, i will go and see if i can work it out with your resolution.

    I sincerely apologize for breaching the terms and will fix it asap!

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
  •