I have a problem with ie9 and jQuery.
In Chrome, Firefox, and Opera, my click events work on anchor tags, but in IE9, the event fails to fire or something happens. it only happens on the first page load when i have nothing in cache, and it doesn’t work.
I click on a link, and no menu fades in, however when I refresh the page, and inspect it with f12 developer tools, it works.
It’s weird, works in every other browser and IE9 after inspecting the dom. Thank you for any help.
ok after looking at the page, i have the same type of event registering with another group of links that work fine in ie9.
i think its having a problem with this selector:
var catTopSelector= '#pc_lhs_top_ul > li:not( #main_menu_top )';
var catBottomSelector= '#pc_lhs_bottom_ul > li:not( #main_menu_bottom )';
for some reason it only works after inspecting. works in all other browsers.
UPDATED ANSWER:
ok, i found out why. i had a console.log in the code right before the animation, and because console is only available when the debugger is opened, it would crash right before the animation. thanks again guys.
ok, i found out why. i had a console.log in the code right before the animation, and because console is only available when the debugger is opened, it would crash right before the animation!