Have have made some jQuery that makes my navigation dropdown, show and hide on hover. For some weird reason it doesn't work on IE8 and IE7.
When testing with a Console.log()
It executes correctly on hover on, but not the $('div', this).show();
part...
My jQuery version is: v1.9.1
My code
$("nav ul li").hover(
function () {
$('div', this).show();
},
function () {
$('div', this).hide();
}
);