Phillip Senn
Phillip Senn

Reputation: 47595

firequery says jQuery is being called incorrectly

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

Answers (1)

Manish Trivedi
Manish Trivedi

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

Related Questions