vote up 1 vote down star

I am new with javascript still, but I would like to know how to check if a library is supposed to be using $ and then do an if statement off of it. Sorry if I have a hard time asking this!

flag
Do you need to detect WHICH library is using it, or just if it is being used? – gnarf Jul 18 at 9:59

2 Answers

vote up 6 vote down

You can test if two object are the same with the === operator:

if ( $ === jQuery ) {
  // $ is a reference to jQuery
}
link|flag
$ === window.jQuery would work better in case jQuery isn't being used. – Joe Chung Jul 18 at 7:23
vote up 0 vote down

Another way to tell if it is jQuery

if($(document.body).jquery){alert("yep");}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.