My navbar works fine in IE 8 but not FF 22 (I'm not really concerned with other browsers atm) I've reviewed the related questions but haven't found a solution, it would seem its usually FF that works and not IE. I've also tried using the window load function and the issue persists. Any assistance is greatly appreciated.
<html>
<head>
<script type="text/javascript" src="C:\wamp\www\jquery-1.10.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.navigation li').hover(
function () {
$('ul', this).fadeIn();
},
function () {
$('ul', this).fadeOut();
}
);
});
</script>
</head>
<style type="text/css">
STYLING....
</style>
<body>
<div class="navigation">
ALL MY NAVIGATION....
</div>
</body>
</html>