Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 38 additions & 7 deletions pages/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,48 @@ To locally download these files, right-click the link and select "Save as..." fr

Download the compressed, production version:

<a class="button db" href="https://code.jquery.com/jquery-4.0.0.min.js">Download jQuery 4.0.0</a>
<ul style="display: grid;grid-template-columns: repeat(auto-fit,minmax(260px,1fr));gap: 16px;">
<li>

* [Download the uncompressed development version of jQuery 4.0.0](https://code.jquery.com/jquery-4.0.0.js)
* [Download the map file for jQuery 4.0.0](https://code.jquery.com/jquery-4.0.0.min.map)
* [jQuery 4.0.0 blog post with release notes](https://blog.jquery.com/2026/01/17/jquery-4-0-0/)
### 4.0.0(Maintenance)
* [Changelog](https://blog.jquery.com/2026/01/17/jquery-4-0-0/) / [Upgrade](https://jquery.com/upgrade-guide/4.0/)

#### Full build

* [Minified](https://code.jquery.com/jquery-4.0.0.min.js)
* [Uncompressed development](https://code.jquery.com/jquery-4.0.0.js)
* [Map file](https://code.jquery.com/jquery-4.0.0.min.map)

#### Slim build

The slim build is a smaller version, that excludes the [ajax](https://api.jquery.com/category/ajax/) and [effects](https://api.jquery.com/category/effects/) modules:

* [Minified](https://code.jquery.com/jquery-4.0.0.slim.min.js)
* [Uncompressed development](https://code.jquery.com/jquery-4.0.0.slim.js)
* [Map file](https://code.jquery.com/jquery-4.0.0.slim.min.map)

</li>
<li>

### 3.7.1(Limited maintenance)
* [Changelog](https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/) / [Upgrade](https://jquery.com/upgrade-guide/3.5/)

#### Full build

* [Minified](https://code.jquery.com/jquery-3.7.1.min.js)
* [Uncompressed development](https://code.jquery.com/jquery-3.7.1.js)
* [Map file](https://code.jquery.com/jquery-3.7.1.min.map)

#### Slim build

The slim build is a smaller version, that excludes the [ajax](https://api.jquery.com/category/ajax/) and [effects](https://api.jquery.com/category/effects/) modules:

* [Download jQuery 4.0.0 slim build](https://code.jquery.com/jquery-4.0.0.slim.min.js)
* [Download the uncompressed development version of the jQuery 4.0.0 slim build](https://code.jquery.com/jquery-4.0.0.slim.js)
* [Download the map for the jQuery 4.0.0 slim build](https://code.jquery.com/jquery-4.0.0.slim.min.map)
* [Minified](https://code.jquery.com/jquery-3.7.1.slim.min.js)
* [Uncompressed development](https://code.jquery.com/jquery-3.7.1.slim.js)
* [Map file](https://code.jquery.com/jquery-3.7.1.slim.min.map)

</li>
</ul>

The uncompressed version is best used during development or debugging; the compressed file saves bandwidth and improves performance in production. You can download the [source map](https://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) file to help with debugging the compressed production version. The source map is _not_ required for end-users to run jQuery; it is a tool to help improve a developer's debugging experience. As of jQuery 1.11/2.1, we [no longer link source maps](https://blog.jquery.com/2014/01/24/jquery-1-11-and-2-1-released/) to compressed releases by default.

Expand Down