I am facing a IE9 issue with Nice menu's. Its working fine for ie7,8 but not in ie9. When open the page sub menus by default expanded without hovering on the main menu link.If anybody has a solution regarding this please help me.

you can visit website here Click here

link|improve this question

50% accept rate
I assume you should be but if not then do check compatibility of your website on firefox and chrome too. These are most used browsers – Pankaj Upadhyay Dec 27 '11 at 10:39
feedback

2 Answers

up vote 1 down vote accepted

Try this

<!--[if lte IE 9]>
    <script type="text/javascript">
    sfHover = function() {
        var sfEls = document.getElementById("nav").getElementsByTagName("LI");
        for (var i=0; i<sfEls.length; i++) {
            sfEls[i].onmouseover=function() {
                this.className+=" sfhover";
            }
            sfEls[i].onmouseout=function() {
                this.className=this.className.replace(new RegExp("sfhover"), "");
            }
        }
    }
    if (window.attachEvent) window.attachEvent("onload", sfHover);
    </script>
    <![endif]-->

Place this code in page.tpl under head section

link|improve this answer
You are using jquery old version , as ie9 supports jquery1.6 fully. if above code doesnot work for you . – Hitu Bansal Dec 27 '11 at 11:02
feedback

Go to your site in Mozila or Chrome and press ctrl-u and you see that you have dobble DOCTYPE and <html>,<body> tags. Its not normal. Repare it first.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.