Reputation: 47595
I installed Firequery, and now Firebug is saying that jQuery is being called incorrectly.
<script src="http://www.google.com/jsapi"></script>
<script>
google.load("jquery", "1");
</script>
Upvotes: 0
Views: 821
Reputation: 3559
Why not use following script for load jquery::
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>
Upvotes: 2