1.

Solve : compatibity probs with ie 6and opera 9?

Answer»

plz refer to this navigation menu http://www.jankoatwarpspeed.com/post/2009/01/19/Create-Vimeo-like-top-navigation.aspx

i just designed my project web page and used this bar but as you know its not WORKING in ie but Bruno Wiltemburg  and  Justin Lim have claimed that they make it work in ie using


 Bruno Wiltemburg  Brazil
31 Jan 2009 at 01:52
Thanks for the tip.
I managed to make it work in IE 6. Using Javascript ...
I used JQuery for this example but may be using any library.

if($.browser.msie && parseInt($.browser.version) < 7){ //TEST if is IE < 7
$("#menu li ul li:first").css({"border-top": "none"}); //DROP border from first element
$("#menu li").mouseover(function(){ //Show submenus
$(this).find("ul").css({"display" : "block"});
}).mouseout(function(){ //HIDE submenus
$(this).find("ul").css({"display" : "none"});
});
}

 Justin Lim
Justin Lim United States
02 Feb 2009 at 05:17
I fixed the IE issue with the following code




Discussion

No Comment Found