December 7, 2017
/
2
min

jQuery is not defined: Common causes and a simple solution

One of the most common JavaScript errors we see affecting our customers is jQuery is not defined. This can be a pretty serious problem if your web app relies on jQuery (73% of all sites!), since if jQuery fails to load, it can make your JavaScript code unusable.

What are the common causes of jQuery is not defined?

The most obvious cause of this error is that you forgot to include jQuery before you used it, but there are also more subtle causes that you’ll not see until you deploy your site to production.

1. Your CDN-hosted jQuery might be blocked

If you are using a CDN-hosted version of jQuery such as Google’s Hosted Libraries, these CDNs might be blocked by a filter or proxy service on your customers’ connection. We typically see this issue with requests originating from Chinese or Indonesian IP addresses.

2. Your CDN-hosted jQuery is down or timing out

Another common example of this bug is when the CDN hosting your jQuery script is unreliable or slow to load. Browsers typically have a timeout of around 20-30 seconds for each script tag.

How can I fix a jQuery is not defined error?

Luckily there is a simple solution to most of these issues. You can easily provide a locally-hosted fallback version of jQuery as follows:

// First try loading jQuery from Google's CDN
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
// Fall back to a local copy of jQuery if the CDN fails
<script>
window.jQuery || document.write('<script src="http://mysite.com/jquery.min.js"><\/script>'))
</script>

If you have a Rails app, you can alternatively use the jquery-rails gem, which automates this fallback process for you.

This technique is used on many popular sites, including jquery.com, and solves most jQuery is not defined errors. If the CDN jQuery fails load, it will almost certainly load fine from your own domain, but you’ll also see the benefits of using a CDN-hosted jQuery for most of your users.

Another option is to install jQuery using npm or another package manager and bundle it with the rest of your JavaScript. To do this, first run npm install jquery --save and then import $ from 'jquery'.

Is jQuery a problem on my site?

It is practically impossible to protect against every JavaScript issue when developing your application, since variables such as browser, operating system, country, and ISP can greatly differ in production.

You can check if this is a problem on your site by using a JavaScript error monitoring service like BugSnag. BugSnag provides comprehensive JavaScript error reporting which detects this and all other JavaScript errors.

———

Getting started is incredibly easy, and you’ll immediately begin receiving error reports that include user and browser error details. Learn how some of our customers use BugSnag to monitor JavaScript errors, like Eventbrite and StubHub. Or, get started now and try it free for 14 days.

Editor’s Note: This blog was originally published in February 2014 and has been updated for accuracy.

BugSnag helps you prioritize and fix software bugs while improving your application stability
Request a demo