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
Post a Comment