Fading jquery not working in Firefox -


i have problem fading. works in chrome, in firefox not working. appear, not fading. can't make fade out. here code:

$(".menu_content").hide(); if (location.hash != "") {     $(location.hash).show();     $('.menu-nav li:has(a[href="location.hash"])').addclass("current").show();     $(this).find("a").addclass("current"); } else {     $(".menu-nav li:first").addclass("current").show();     $(".menu_content:first").show(); location.hash = "welcome"; } $(".menu-nav li").click(function () {     $(".menu-nav li").removeclass("current");     $(this).addclass("current");     $(".menu_content").hide();     var activetab = $(this).find("a").attr("href");     location.hash = activetab;     $(activetab).fadein();     return false; }); 


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -