How to find out that jQuery is uploaded to the site?

I want to check a specific site. I want the site to have jquery in it. But do it in the console:

$

gives me undefined. But I see that they use jQuery in the tag script, for example:

<script type="text/javascript" src="scripts/lib/jquery/jquery-1.8.3.min.js" charset="utf-8"></script>

Is there any other way to access jQuery than $?

+3
source share
3 answers
It might be some  plugin may have overwritten the $ variable or 
You have JavaScript running before jquery is loaded .

Test your jquery path and check with Firbug

or try

var $j = jQuery.noConflict();

Now you can use $ j instead of $ in your jquery code.

More on jquery conflict

+1
source

try using it in this format:

jQuery(document).ready({ .... 

instead of $

Also check if you can define jquery.js or check this list. Here are some versions of jquery that may be available:

http://jquery.com/download/

+1

$ $().jquery, , jQuery.

0

All Articles