0

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>
putvande
  • 15,068
  • 3
  • 34
  • 50
  • 1
    You ought to put ` – Trojan Jul 31 '13 at 10:47

1 Answers1

2

URIs don't use backslashes. IE may treat them nicely, but no other browser will. Also, if you're running this on a webserver, just use an absolute URL:

src="/jquery-1.10.1.min.js">
Blender
  • 289,723
  • 53
  • 439
  • 496
  • I figured I was making a noob mistake, thank you so very much, I will accept your answer in 10 minutes, I've learned something today!! –  Jul 31 '13 at 10:47