I have a menu that is using the following to show and hide the menu
On some ie9 computers it is showing all the buttons in the sections when it loads, i cant figure out how to stop it doing this?
page can be seen here http://www.yaketyyakallmouth.com/pag...asp?id=All#183
not even sure if JQuery can be helped here
thanks
colin
Code:
$(document).ready(function(){ // Hide all unordered lists that are descended from the navigation $("#nav ul").hide(); $("#artistnav ul").hide(); //$("#nav ul").css('visibilty', 'visible'); jQuery('a').bind('click', function(){ // on clicking the link get the parent li then find the first ul you can and display $(this).parents("li:first").find("ul:first").slideToggle(1000); //return false; }); });
page can be seen here http://www.yaketyyakallmouth.com/pag...asp?id=All#183
not even sure if JQuery can be helped here
thanks
colin
Comment