Published
Updated
Easily manage projects with monday.com
if (typeof jQuery == 'undefined') {
// jQuery IS NOT loaded, do stuff here.
}
All comments are held for moderation. We'll publish all comments that are on topic, not rude, and adhere to our Code of Conduct. You'll even get little stars if you do an extra good job.
You may write comments in Markdown. This is the best way to post any code, inline like `<div>this</div>` or multiline blocks within triple backtick fences (```) with double new lines before and after.
Want to tell us something privately, like pointing out a typo or stuff like that? Contact Us.
I usually do
alert($);
or
alert(jQuery);
use
if (typeof jQuery == 'function')
or
if (typeof $== 'function')
to check if jQuery is Loaded
if(jquery) will do tjob
if (jQuery) {
alert(“jquery is loaded”);
} else {
alert(” Not loaded”);
}
you can open developer console and type $ to check if jQuery is loaded or not
genius
checking just for “$” as some people suggest is certainly NOT enough to check for jQuery existence. Some websites may dont use jQuery in general but like the “$” function and just slice out this part from the jQuery library. Or they make their own like const $ = (elem) => document.querySelectorAll(elem); In both cases if you check for “$” you would get a function back even though jQuery is not existing. I agree with the people who check for the jQuery object –> if(window.jQuery).