Compressed and uncompressed copies of jQuery files are available. Uncompressed files are best used during development or debugging. Compressed files save bandwidth and improve performance in production environments. You can also download sourcemap files to use when debugging with compressed files. Users do not need a map file to run jQuery. Map files only improve the debugger experience for developers.

Use below link to download jQuery, to locally download these files, right-click the link and select “Save as” from the menu and save it on your desired location for your use.

jQuery Downloading links:

For help when upgrading jQuery, please see the upgrade guide most relevant to your version. We also recommend using the jQuery Migrate plugin.

Download the compressed, production jQuery 3.7.1

Download the uncompressed, development jQuery 3.7.1

Download the map file for jQuery 3.7.1

You can also use the slim build, which excludes the ajax and effects modules:

Download the compressed, production jQuery 3.7.1 slim build

Download the uncompressed, development jQuery 3.7.1 slim build

Download the map file for the jQuery 3.7.1 slim build

Using jQuery with a CDN

The following CDNs also host compressed and uncompressed versions of jQuery releases. Starting with jQuery 1.9 they may also host sourcemap files; check the site’s documentation. Please note that Beta and release candidates are not hosted by these CDNs

  1. Google CDN
  2. Microsoft CDN
  3. CDNJS CDN
  4. jsDelivr CDN

Downloading jQuery using npm or Yarn

 You can install the latest version of jQuery with the npm CLI command.

npm install jquery

You can use the Yarn CLI command & bower as given below:

yarn add jquery


bower install jquery

Please note that all past releases can be found on the jQuery CDN.

More on jQuery:

Explore More

On click of parent page pop up window should stay on top only

To ensure the popup window stays on top of the parent page, you can use the window.open() method with specific focus-handling logic. JavaScript allows you to bring the popup window

Open a Fixed-Size Popup Without Minimize/Maximize Effects

Disabling the minimize and maximize buttons of a popup window is not directly supported in modern browsers, including Microsoft Edge, due to security and user-experience considerations. The window.open() function provides

How to remove JavaScript Objects from memory

To remove unused objects and improve memory management in JavaScript, you generally rely on the JavaScript engine’s garbage collection mechanism. However, you can aid this process by explicitly removing references