Dropdown menu not working in IE

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • angelina18
    New Member
    • Mar 2008
    • 7

    Dropdown menu not working in IE

    Hi...I got this menu from a tutorial on A List Apart http://www.alistapart.com/articles/horizdropdowns/ It renders fine in FF, but in IE the dropdowns appear to get stuck. The added javascript (which I know absolutely nothing about) was supposed to make the menu work for IE. Does anyone have any idea of what the problem could be?
    Here is the link to my menu.... http://www.designmassive.net/megango...0dropdown.html

    Any help would be greatly appreciated!
  • nicky77
    New Member
    • Aug 2007
    • 25

    #2
    hi there, you have an illegal character (») in your onmouseout javascript function in the <head> section of your page - this is preventing the dropdown from changing when you move away from it...see below

    Code:
    node.onmouseout=function() {
    64 this.className=this.className.replace»
    this should be
    Code:
    node.onmouseout=function() {
    64 this.className=this.className.replace

    Comment

    • angelina18
      New Member
      • Mar 2008
      • 7

      #3
      That did the trick. Thank you so much for your help!

      Comment

      Working...