i have been working on a ticker, and now it is broken. What have i done wrong, and how do i fix it? www.codtelevision.com
I have added <script src="http://code.jquery.com/jquery-latest.js"></script>
|
i have been working on a ticker, and now it is broken. What have i done wrong, and how do i fix it? www.codtelevision.com I have added |
|||||||||||
|
|
The jquery-latest.js should be called BEFORE the jqueryUI code is called. Sequence matters. |
|||
|
|
|
OK. I see this error with Firebug and it comes from jQuery UI file:
Changes are you are referencing the jQuery UI script before jQuery itself. As jQuery UI depends on jQuery you must reference the scripts in the correct order, that is, jQuery first then jQuery UI. Yes, you're referencing jQuery UI first with your current code:
Try this way:
|
|||||||||||||
|