From 4c21f2c61cad6ef5e0ee091c8e4d0bfa1c624e40 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Sat, 1 Jun 2013 13:24:24 -0400 Subject: [PATCH 001/382] Add CDNJS to CDN section; tighten up build instructions. --- pages/download.md | 69 +++++++++++++++++++++++------------------------ 1 file changed, 33 insertions(+), 36 deletions(-) diff --git a/pages/download.md b/pages/download.md index 8724428..580d15d 100644 --- a/pages/download.md +++ b/pages/download.md @@ -73,10 +73,11 @@ The jQuery team is constantly working to improve the code. Each commit to the Gi [CDNs](http://en.wikipedia.org/wiki/Content_delivery_network) can offer a performance benefit by hosting jQuery on servers spread across the globe. This also offers an advantage that if the visitor to your webpage has already downloaded a copy of jQuery from the same CDN, it won't have to be re-downloaded. -### Using jQuery's CDN provided by [MediaTemple](http://mediatemple.net) +### jQuery's CDN provided by [MediaTemple](http://mediatemple.net) +To use the jQuery CDN, just reference the file directly from `http://code.jquery.com` in the script tag: ``` - + ``` @@ -84,26 +85,44 @@ Starting with jQuery 1.9, [sourcemap files](http://blog.jquery.com/2013/01/09/jq To see all available files and versions, visit [http://code.jquery.com](http://code.jquery.com) -### Using Google's CDN +### Other CDNs -All jQuery releases are available on the Google CDN, visit [Google's CDN page](http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery) for more information. **Note that we do not control this CDN; there may be a delay between a jQuery release and its availability there.** +The following CDNs also host compressed and uncompressed versions of jQuery releases. Starting with jQuery 1.9 they may also host [sourcemap files](http://blog.jquery.com/2013/01/09/jquery-1-9-rc1-and-migrate-rc1-released/#sourcemaps); check the site's documentation. -### Using Microsoft's CDN +**Note that there may be delays between a jQuery release and its availability there. Please be patient, they receive the files at the same time the blog post is made public. Beta and release candidates are not hosted by these CDNs.** -All jQuery releases are available on the Microsoft CDN, visit [Microsoft's CDN Page](http://www.asp.net/ajaxlibrary/cdn.ashx) for more information. **Note that we do not control this CDN; there may be a delay between a jQuery release and its availability there.** +* [Google CDN](http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery) +* [Microsoft CDN](http://www.asp.net/ajaxlibrary/cdn.ashx#jQuery_Releases_on_the_CDN_0) +* [CDNJS CDN](http://cdnjs.com#jquery) ## About the Code -The code itself is written rather cleanly in an attempt to self-document. If you've spotted some areas of code that could be improved, please feel free to discuss it on the [Developing jQuery Core Forum](https://forum.jquery.com/developing-jquery-core). All input is gladly appreciated! +**jQuery is provided under the MIT license.** + +The code is hosted and developed in the [jQuery GitHub repository](http://github.com/jquery/jquery). If you've spotted some areas of code that could be improved, please feel free to discuss it on the [Developing jQuery Core Forum](https://forum.jquery.com/developing-jquery-core). If you'd like to participate in developing jQuery, peruse our [contributor site](http://contribute.jquery.org) for more information. -All of the code is available in two formats: +To find and download plugins developed by jQuery contributors, please visit the Plugins site. Plugin authors are responsible for maintenance of their plugins. Feedback on plugins should be directed to the plugin author, not the jQuery team. -* Compressed (which allows you to have a significantly smaller file size) and -* Uncompressed (good for debugging and to understand what is behind the magic). +### Build from Git -If you're interested in downloading Plugins developed by jQuery contributors, please visit the Plugins site. +*Note:* To just use the latest work-in-progress version of jQuery, please try the jQuery Pre-Release Build described above. -**jQuery is provided under the MIT license.** +All source code is kept under Git revision control, which you can browse online. The repository's README has more information on building and testing your own jQuery, as well as instructions on creating a custom build that excludes some APIs to reduce file size. + +If you have access to Git, you can connect to the repository here: + +``` bash +git clone git://github.com/jquery/jquery.git +``` + +You can also check out and build a specific version of jQuery from GitHub: + +``` bash +git clone git://github.com/jquery/jquery.git +git checkout 1.2.6 +``` + +The README file for a specific version will have instructions for building that version, as the process has changed over time. *** @@ -112,36 +131,14 @@ If you're interested in downloading Plugins developed by jQuery contributors, pl + + - - - - -
VersionDocsDownloads
2.0.1Release NotesMinified Uncompressed
2.0.0Release NotesMinified Uncompressed
1.10.0Release NotesMinified Uncompressed
1.9.1Release NotesMinified Uncompressed
1.9.0Release NotesMinified Uncompressed
1.8.3Release NotesMinified Uncompressed
1.8.2Release NotesMinified Uncompressed
1.8.1Release NotesMinified Uncompressed
1.8.0Release NotesMinified Uncompressed
1.7.2Release NotesMinified Uncompressed
1.7.1Release NotesMinified Uncompressed
1.6.4Release NotesMinified Uncompressed
1.6.3Release NotesMinified Uncompressed
-### Build from Git -*Note:* The following is quite advanced. If you wish to just use a work-in-progress version of jQuery, please try the jQuery Git build instead. - -All source code is kept under Git revision control, which you can browse online. There's a download link available for any file or directory, if you only want to download a portion of the jQuery code. - -If you have access to Git, you can connect to the repository here: - -``` bash -git clone git://github.com/jquery/jquery.git -``` - -You can also check out a specific version of jQuery from GitHub: - -``` bash -git clone git://github.com/jquery/jquery.git -git checkout 1.2.6 -``` - -The repository's README has more information on building and testing your own jQuery, as well as links to core style guidelines and tips for patching bugs. From e841781ee6b4a1efab64258d39c5df112c25e734 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Sat, 1 Jun 2013 13:26:45 -0400 Subject: [PATCH 002/382] 2.1.1-0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c06e665..3618e3e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.0-0", + "version": "2.1.1-0", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 72c3ebd622809188edeb02fa8332d07acfc30e2a Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 2 Jul 2013 22:00:07 -0400 Subject: [PATCH 003/382] jQuery 2.0.3 and 1.10.2 release. --- pages/download.md | 30 +++++++++++++++--------------- pages/index.html | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/pages/download.md b/pages/download.md index 580d15d..cde8ccd 100644 --- a/pages/download.md +++ b/pages/download.md @@ -20,20 +20,20 @@ To locally download these files, right-click the link and select "Save as..." fr ### jQuery 1.x -The jQuery 1.x line has major changes from previous versions. We _strongly_ +The jQuery 1.x line had major changes as of jQuery 1.9.0. We _strongly_ recommend that you also use the jQuery Migrate plugin if you are upgrading from -older versions of jQuery or need to use plugins that haven't yet been updated. +pre-1.9 versions of jQuery or need to use plugins that haven't yet been updated. Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -[Download the compressed, production jQuery 1.10.1](http://code.jquery.com/jquery-1.10.1.min.js) +[Download the compressed, production jQuery 1.10.2](http://code.jquery.com/jquery-1.10.2.min.js) -[Download the uncompressed, development jQuery 1.10.1](http://code.jquery.com/jquery-1.10.1.js) +[Download the uncompressed, development jQuery 1.10.2](http://code.jquery.com/jquery-1.10.2.js) -[Download the map file for jQuery 1.10.1](http://code.jquery.com/jquery-1.10.1.min.map) +[Download the map file for jQuery 1.10.2](http://code.jquery.com/jquery-1.10.2.min.map) -[jQuery 1.10.1 release notes](http://blog.jquery.com/?p=2970) +[jQuery 1.10.2 release notes](http://blog.jquery.com/?p=3006) ### jQuery 2.x @@ -41,15 +41,15 @@ jQuery 2.x has the same API as jQuery 1.x, but _does not support Internet Explor All the notes in the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) apply here as well. Since IE 6/7/8 are still relatively common, we recommend using the 1.x version unless you are certain no IE 6/7/8 users are visiting the site. -Please read the [release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. +Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -[Download the compressed, production jQuery 2.0.2](http://code.jquery.com/jquery-2.0.2.min.js) +[Download the compressed, production jQuery 2.0.3](http://code.jquery.com/jquery-2.0.3.min.js) -[Download the uncompressed, development jQuery 2.0.2](http://code.jquery.com/jquery-2.0.2.js) +[Download the uncompressed, development jQuery 2.0.3](http://code.jquery.com/jquery-2.0.3.js) -[Download the map file for jQuery 2.0.2](http://code.jquery.com/jquery-2.0.2.min.map) +[Download the map file for jQuery 2.0.3](http://code.jquery.com/jquery-2.0.3.min.map) -[jQuery 2.0.2 release notes](http://blog.jquery.com/?p=2970) +[jQuery 2.0.3 release notes](http://blog.jquery.com/?p=3006) ## jQuery Migrate plugin @@ -128,14 +128,14 @@ The README file for a specific version will have instructions for building that ## Past Releases +All past releases can be found on the [jQuery CDN](http://code.jquery.com). Here are some commonly used recent versions: + - - - + + - diff --git a/pages/index.html b/pages/index.html index 66e4337..9742d35 100644 --- a/pages/index.html +++ b/pages/index.html @@ -12,7 +12,7 @@ Download jQuery - v1.10.1 or v2.0.2 + v1.10.2 or v2.0.3
View Source on GitHub → From f1120574551ba71c0e80580ccf04662e3d847315 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Wed, 3 Jul 2013 09:53:58 -0400 Subject: [PATCH 004/382] 2.1.2-0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3618e3e..c597641 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.1-0", + "version": "2.1.2-0", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From eea34d2aa245dea2e4c309d1adbd9c3a1b4a74fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 16 Jul 2013 08:58:21 -0400 Subject: [PATCH 005/382] Clean up sample config. --- config-sample.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-sample.json b/config-sample.json index 3f8b9d5..5211344 100644 --- a/config-sample.json +++ b/config-sample.json @@ -1,5 +1,5 @@ { - "url": "dev.jquery.com", + "url": "local.jquery.com", "username": "admin", "password": "secret" } From 88f7445c56afe4504d967ac13e1b61c402e2c803 Mon Sep 17 00:00:00 2001 From: Justin Dorfman Date: Wed, 7 Aug 2013 12:51:08 -0700 Subject: [PATCH 006/382] Download: Replace (mt) with maxcdn. --- pages/download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/download.md b/pages/download.md index cde8ccd..7307a0a 100644 --- a/pages/download.md +++ b/pages/download.md @@ -73,7 +73,7 @@ The jQuery team is constantly working to improve the code. Each commit to the Gi [CDNs](http://en.wikipedia.org/wiki/Content_delivery_network) can offer a performance benefit by hosting jQuery on servers spread across the globe. This also offers an advantage that if the visitor to your webpage has already downloaded a copy of jQuery from the same CDN, it won't have to be re-downloaded. -### jQuery's CDN provided by [MediaTemple](http://mediatemple.net) +### jQuery's CDN provided by [MaxCDN](http://www.maxcdn.com) To use the jQuery CDN, just reference the file directly from `http://code.jquery.com` in the script tag: ``` From 865c7189f04d4125cddb3e1fe9222afbd58d03fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 7 Aug 2013 16:08:42 -0400 Subject: [PATCH 007/382] 2.0.3-1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c597641..cf9d16b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.2-0", + "version": "2.0.3-1", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From b0dd2b0d5dcc0c4e2e95d5b70caa586a3824528c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 15 Aug 2013 18:21:47 -0400 Subject: [PATCH 008/382] Add MaxCDN to list of who's using jQuery. --- pages/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.html b/pages/index.html index 9742d35..58da694 100644 --- a/pages/index.html +++ b/pages/index.html @@ -56,8 +56,8 @@

Who's Using jQuery

From 308151b0f2db4e11a58c6703265857fd08eed19f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 15 Aug 2013 18:22:28 -0400 Subject: [PATCH 009/382] 2.0.3-2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cf9d16b..76b0e79 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.3-1", + "version": "2.0.3-2", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 8801b243b5cd0c6b0ec1c7f6948c70c7bac216bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 27 Aug 2013 10:08:25 -0400 Subject: [PATCH 010/382] 1.9 upgrade guide: Fixed typo. --- pages/upgrade-guide/1.9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/upgrade-guide/1.9.md b/pages/upgrade-guide/1.9.md index f22e1c1..a5564f8 100644 --- a/pages/upgrade-guide/1.9.md +++ b/pages/upgrade-guide/1.9.md @@ -105,7 +105,7 @@ The `.data()` method had an undocumented and incredibly non-performant way to mo For many versions, nearly all jQuery methods that return new sets of nodes use the document order to sort the resulting set. (There are a few methods such as `.parents()`, which returns its results in reverse-document order, but those exceptions are already documented and have not changed in 1.9.) -Before 1.9, sets that contained some connected and some disconnected nodes would be sorted inconsistently, depending on whether a disconnected node led the original unsorted set. As of 1.9, connected nodes are always placed at the beginning of the set in document order, and disconnected nodes are placed behind them. The jQuery Migrate plugin does not does _not_ restore the old behavior, which was somewhat random and unpredictable. +Before 1.9, sets that contained some connected and some disconnected nodes would be sorted inconsistently, depending on whether a disconnected node led the original unsorted set. As of 1.9, connected nodes are always placed at the beginning of the set in document order, and disconnected nodes are placed behind them. The jQuery Migrate plugin does _not_ restore the old behavior, which was somewhat random and unpredictable. ### Loading and running scripts inside HTML content From 21ecf7c13f53ceea6c986c5e14776647623fd8ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 27 Aug 2013 10:08:40 -0400 Subject: [PATCH 011/382] 2.0.3-3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 76b0e79..26848ea 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.3-2", + "version": "2.0.3-3", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From be72848a1e310e5afedf5406b3c97a95e1f0595f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Fri, 13 Sep 2013 00:57:05 +0200 Subject: [PATCH 012/382] Change supported browser versions to be "(current - 1) or newer" only for rolling-release browsers. Also, added a note we support Opera 12.1x. --- pages/browser-support.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index d42dbac..e6d9246 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -20,10 +20,10 @@

Current Active Support

- - - - + + + + @@ -33,7 +33,8 @@

Current Active Support

VersionDocsDownloads
2.0.1Release NotesMinified Uncompressed
2.0.0Release NotesMinified Uncompressed
1.10.0Release NotesMinified Uncompressed
2.0.2Release NotesMinified Uncompressed
1.10.1Release NotesMinified Uncompressed
1.9.1Release NotesMinified Uncompressed
1.9.0Release NotesMinified Uncompressed
1.8.3Release NotesMinified Uncompressed
1.7.2Release NotesMinified Uncompressed
1.6.4Release NotesMinified Uncompressed
jQuery 1.x 6+Current − 1 versionCurrent − 1 versionCurrent − 1 versionCurrent − 1 version(current - 1) or newer(current - 1) or newer5.1+12.1x, (current - 1) or newer
jQuery 2.x

Any problem with jQuery in the above browsers should be considered and reported as a bug in jQuery.

-

Current - 1 version denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions.

+

(current - 1) or newer denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions.

+

12.1x, (current - 1) or newer denotes that we support Opera 12.1x as well as last 2 versions of Opera. For example, if the current Opera version is 20.x, we support Opera 12.1x, 19.x and 20.x but not Opera 15.x through 18.x.


Unsupported Browsers

From 0c71955acdaf0caa3da478c0ff6e7487673ddc0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 16 Sep 2013 22:01:20 +0200 Subject: [PATCH 013/382] Make it clear we don't support browsers newer than current stable ones. --- pages/browser-support.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index e6d9246..2daf3f1 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -20,10 +20,10 @@

Current Active Support

jQuery 1.x 6+ - (current - 1) or newer - (current - 1) or newer + (Current - 1) or Current + (Current - 1) or Current 5.1+ - 12.1x, (current - 1) or newer + 12.1x, (Current - 1) or Current jQuery 2.x @@ -33,8 +33,8 @@

Current Active Support

Any problem with jQuery in the above browsers should be considered and reported as a bug in jQuery.

-

(current - 1) or newer denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions.

-

12.1x, (current - 1) or newer denotes that we support Opera 12.1x as well as last 2 versions of Opera. For example, if the current Opera version is 20.x, we support Opera 12.1x, 19.x and 20.x but not Opera 15.x through 18.x.

+

(Current - 1) or Current denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions.

+

12.1x, (Current - 1) or Current denotes that we support Opera 12.1x as well as last 2 versions of Opera. For example, if the current Opera version is 20.x, we support Opera 12.1x, 19.x and 20.x but not Opera 15.x through 18.x.


Unsupported Browsers

From d1eba30bf861887b6cfae50b06a78891b60cb32f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 16 Sep 2013 22:16:35 +0200 Subject: [PATCH 014/382] 2.0.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 26848ea..2103446 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.3-3", + "version": "2.0.4", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 15f5255ed579483d292dbacd349b1bc55e42933e Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Fri, 18 Oct 2013 22:17:45 -0400 Subject: [PATCH 015/382] Update link for cdnjs on download page --- pages/download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/download.md b/pages/download.md index 7307a0a..8a8a4d2 100644 --- a/pages/download.md +++ b/pages/download.md @@ -93,7 +93,7 @@ The following CDNs also host compressed and uncompressed versions of jQuery rele * [Google CDN](http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery) * [Microsoft CDN](http://www.asp.net/ajaxlibrary/cdn.ashx#jQuery_Releases_on_the_CDN_0) -* [CDNJS CDN](http://cdnjs.com#jquery) +* [CDNJS CDN](http://cdnjs.com/libraries/jquery/) ## About the Code From f23c5f6876bd111c605cb61ed8dfa0cf9a7303d0 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Fri, 18 Oct 2013 22:22:00 -0400 Subject: [PATCH 016/382] 2.0.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2103446..2be6096 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.4", + "version": "2.0.5", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From cdf835b3d81679363a3093d0eaf8619506fd2fde Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 12 Nov 2013 17:26:38 -0500 Subject: [PATCH 017/382] Add recommendations for browser support resources. --- pages/browser-support.html | 12 ++++++++++-- pages/download.md | 6 +++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 2daf3f1..9762c02 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -42,9 +42,17 @@

Unsupported Browsers


-

About CSS & Browser Compatibility

+

About Browser Support

+

jQuery is constantly tested with all of its supported browsers via unit tests. However, a web page using jQuery may not work in the same set of browsers if its own code takes advantage of (or falls prey to) browser-specific behaviors. Testing is essential to fully support a browser. The Modern.IE site makes available virtual machines for testing many different versions of Internet Explorer. Older versions of other browsers can be found at oldversion.com.

+ +

Only the most current version of jQuery is tested and updated to fix bugs or add features. Users of older versions that find a bug should upgrade to the latest released version to determine if the bug has already been fixed. The jQuery Migrate plugin may be helpful in identifying and fixing problems during a version upgrade.

+ +
+ +

About CSS Selector Compatibility

Regardless of a browser's support of CSS selectors, all selectors listed at api.jquery.com/category/selectors/ will return the correct set of elements when passed as an argument of the jQuery function.

-

CSS styles applied with jQuery's .css() method are dependent on the browser's level of support. In general, jQuery does not attempt to overcome the limitations of a browser's style rendering (one exception is opacity, which jQuery "shims" for older Internet Explorer's alternative implementation). Furthermore, prior to version 1.8, jQuery does not normalize vendor-prefixed properties.

+

CSS styles applied with jQuery's .css() method are dependent on the browser's level of support. In general, jQuery does not attempt to overcome the limitations of a browser's style rendering. (One exception is opacity, which jQuery "shims" for older Internet Explorer's alternative implementation.) Furthermore, prior to version 1.8, jQuery does not normalize vendor-prefixed properties.

+

External References

  • CSS contents and browser compatibility
  • diff --git a/pages/download.md b/pages/download.md index 8a8a4d2..ace3bd6 100644 --- a/pages/download.md +++ b/pages/download.md @@ -51,7 +51,7 @@ Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0 [jQuery 2.0.3 release notes](http://blog.jquery.com/?p=3006) -## jQuery Migrate plugin +## jQuery Migrate Plugin We have created the [jQuery Migrate plugin](http://github.com/jquery/jquery-migrate/#readme) to simplify the transition from older versions of jQuery. The plugin restores deprecated features and behaviors so that older code will still run properly on jQuery 1.9 and later. Use the _uncompressed development_ version to diagnose compatiblity issues, it will generate warnings on the console that you can use to identify and fix problems. Use the _compressed production_ version to simply fix compatibility issues without generating console warnings. @@ -60,6 +60,10 @@ to simplify the transition from older versions of jQuery. The plugin restores de [Download the uncompressed, development jQuery Migrate 1.2.1](http://code.jquery.com/jquery-migrate-1.2.1.js) +## Cross-Browser Testing with jQuery + +Be sure to test web pages that use jQuery in all the browsers you want to support. The [Modern.IE](http://modern.ie/) site makes available virtual machines for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). + ## jQuery Pre-Release Builds The jQuery team is constantly working to improve the code. Each commit to the Github repo generates a work-in-progress version of the code that we update on the jQuery CDN. _These versions are sometimes unstable and not suitable for production sites._ We recommend they be used to determine whether a bug has already been fixed when reporting bugs against released versions, or to see if new bugs have been introduced. There are two versions, one for the 1.x branch (supports IE 6/7/8) and one for the 2.x branch (not for use with old IE). From e9d895221d35126fd4fd426b80ade803a6edee30 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 12 Nov 2013 17:27:31 -0500 Subject: [PATCH 018/382] 2.0.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2be6096..4023686 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.5", + "version": "2.0.6", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From b85234691dfdd33c98871f6dbe86c80876cd2534 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 12 Nov 2013 17:49:26 -0500 Subject: [PATCH 019/382] Add links to VMs to save hunting. --- pages/browser-support.html | 2 +- pages/download.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 9762c02..083a6f9 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -43,7 +43,7 @@

    Unsupported Browsers


    About Browser Support

    -

    jQuery is constantly tested with all of its supported browsers via unit tests. However, a web page using jQuery may not work in the same set of browsers if its own code takes advantage of (or falls prey to) browser-specific behaviors. Testing is essential to fully support a browser. The Modern.IE site makes available virtual machines for testing many different versions of Internet Explorer. Older versions of other browsers can be found at oldversion.com.

    +

    jQuery is constantly tested with all of its supported browsers via unit tests. However, a web page using jQuery may not work in the same set of browsers if its own code takes advantage of (or falls prey to) browser-specific behaviors. Testing is essential to fully support a browser. The modern.IE site makes available [virtual machines](http://www.modern.ie/en-us/virtualization-tools#downloads) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at oldversion.com.

    Only the most current version of jQuery is tested and updated to fix bugs or add features. Users of older versions that find a bug should upgrade to the latest released version to determine if the bug has already been fixed. The jQuery Migrate plugin may be helpful in identifying and fixing problems during a version upgrade.

    diff --git a/pages/download.md b/pages/download.md index ace3bd6..758e52b 100644 --- a/pages/download.md +++ b/pages/download.md @@ -62,7 +62,7 @@ to simplify the transition from older versions of jQuery. The plugin restores de ## Cross-Browser Testing with jQuery -Be sure to test web pages that use jQuery in all the browsers you want to support. The [Modern.IE](http://modern.ie/) site makes available virtual machines for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). +Be sure to test web pages that use jQuery in all the browsers you want to support. The [modern.IE](http://modern.ie/) site makes available [virtual machines](http://www.modern.ie/en-us/virtualization-tools#downloads) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). ## jQuery Pre-Release Builds From b835a8ae82f03e739ff640f2dc6c94579182d7bb Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 12 Nov 2013 17:49:53 -0500 Subject: [PATCH 020/382] 2.0.7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4023686..f9d25b3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.6", + "version": "2.0.7", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 4086dbc849dc02557f032aa0636533a7df0dbda3 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 12 Nov 2013 18:04:09 -0500 Subject: [PATCH 021/382] HTML is not Markdown. --- pages/browser-support.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 083a6f9..fc54dc3 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -43,7 +43,7 @@

    Unsupported Browsers


    About Browser Support

    -

    jQuery is constantly tested with all of its supported browsers via unit tests. However, a web page using jQuery may not work in the same set of browsers if its own code takes advantage of (or falls prey to) browser-specific behaviors. Testing is essential to fully support a browser. The modern.IE site makes available [virtual machines](http://www.modern.ie/en-us/virtualization-tools#downloads) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at oldversion.com.

    +

    jQuery is constantly tested with all of its supported browsers via unit tests. However, a web page using jQuery may not work in the same set of browsers if its own code takes advantage of (or falls prey to) browser-specific behaviors. Testing is essential to fully support a browser. The modern.IE site makes available virtual machines for testing many different versions of Internet Explorer. Older versions of other browsers can be found at oldversion.com.

    Only the most current version of jQuery is tested and updated to fix bugs or add features. Users of older versions that find a bug should upgrade to the latest released version to determine if the bug has already been fixed. The jQuery Migrate plugin may be helpful in identifying and fixing problems during a version upgrade.

    From ce07eb604cf4023947f4575467fe2cdd0c27ae9c Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 12 Nov 2013 18:04:17 -0500 Subject: [PATCH 022/382] 2.0.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f9d25b3..c9a31a1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.7", + "version": "2.0.8", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 3396e99749cc2e55becf80011a5fe2c36510f35d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 21 Nov 2013 14:48:39 -0500 Subject: [PATCH 023/382] Added meetups page. --- pages/meetups.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pages/meetups.md diff --git a/pages/meetups.md b/pages/meetups.md new file mode 100644 index 0000000..51467f9 --- /dev/null +++ b/pages/meetups.md @@ -0,0 +1,14 @@ + + +Meetups are a great way to meet other community members, expand your knowledge, +socialize, and show off what you've been working on. + +Thousands of developers get together every month all over the world to share +their knowledge. Check out meetup.com to find a [jQuery](http://jquery.meetup.com/) +or [JavaScript](http://javascript.meetup.com/) meetup near you. Can't find a +meetup near you? Consider [creating your own meetup](http://www.meetup.com/create/)! + +Looking for larger events? We have plenty of +[trainings and conferences](http://events.jquery.org/) all over the world too! From 939a6a9864c1cee272a6f10c4c8769e4b24b4def Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 21 Nov 2013 14:48:50 -0500 Subject: [PATCH 024/382] 2.0.9 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c9a31a1..dea32ed 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.8", + "version": "2.0.9", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From b0fcf8d77768b9501207700d3d220128c219b102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 21 Nov 2013 14:54:36 -0500 Subject: [PATCH 025/382] Don't specify a template for contentfull pages. --- pages/browser-support.html | 11 +++++------ pages/download.md | 7 ++----- pages/upgrade-guide.md | 3 +-- pages/upgrade-guide/1.9.md | 3 +-- 4 files changed, 9 insertions(+), 15 deletions(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index fc54dc3..b4b9823 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -1,10 +1,9 @@ - + +

    Current Active Support

    + diff --git a/pages/download.md b/pages/download.md index 758e52b..a7a9aaf 100644 --- a/pages/download.md +++ b/pages/download.md @@ -1,12 +1,9 @@ - +} ## Downloading jQuery diff --git a/pages/upgrade-guide.md b/pages/upgrade-guide.md index 0668ef2..7fba093 100644 --- a/pages/upgrade-guide.md +++ b/pages/upgrade-guide.md @@ -1,6 +1,5 @@ ## [1.9 Upgrade Guide](/upgrade-guide/1.9/) diff --git a/pages/upgrade-guide/1.9.md b/pages/upgrade-guide/1.9.md index a5564f8..59f09ab 100644 --- a/pages/upgrade-guide/1.9.md +++ b/pages/upgrade-guide/1.9.md @@ -1,7 +1,6 @@ ## Overview From 1a605be36df106326397848c92f02ceadd97c418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 21 Nov 2013 14:55:53 -0500 Subject: [PATCH 026/382] 2.0.10 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index dea32ed..ed734f3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.9", + "version": "2.0.10", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 0327205b217ac60cf50d9e35ccaa578571bc8684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 2 Dec 2013 11:30:06 -0500 Subject: [PATCH 027/382] Index: Replaced Who's Using jQuery with Corporate Members logo rotation. --- grunt.js | 61 +++++++++++++++++++++++++++++++++++++++++++++++- pages/index.html | 15 ++++++------ 2 files changed, 67 insertions(+), 9 deletions(-) diff --git a/grunt.js b/grunt.js index 8963d90..21fb871 100644 --- a/grunt.js +++ b/grunt.js @@ -41,8 +41,67 @@ grunt.initConfig({ }, grunt.file.readJSON( "config.json" ) ) }); +grunt.registerTask( "build-member-list", function() { + var https = require( "https" ), + done = this.async(), + path = grunt.config( "wordpress.dir" ) + "/resources/corporate-members.json"; + + function getMembers( level, callback ) { + var request = https.request({ + host: "raw.github.com", + path: "/jquery/jquery.org/master/data/members/" + level + ".json" + }, function ( response ) { + var json = ""; + response.setEncoding( "utf8" ); + response.on( "data", function( chunk ) { + json += chunk; + }); + response.on( "end", function() { + try { + json = JSON.parse( json ); + } catch( error ) { + return callback( error ); + } + + callback( null, json ); + }); + }); + + request.end(); + } + + grunt.utils.async.parallel({ + founding: getMembers.bind( null, "founding" ), + platinum: getMembers.bind( null, "platinum" ), + gold: getMembers.bind( null, "gold" ) + }, function( error, members ) { + if ( error ) { + grunt.log.error( error ); + return done( false ); + } + + var corporateMembers = members.founding + .concat( members.platinum ) + .concat( members.gold ) + .filter(function( member ) { + + // modern.IE has a special membership which doesn't get logo rotation + if ( member.name === "modern.IE" ) { + return false; + } + + return true; + }); + + corporateMembers = JSON.stringify( corporateMembers ); + grunt.file.write( path, corporateMembers ); + done(); + }); +}); + grunt.registerTask( "default", "lint wordpress-deploy" ); -grunt.registerTask( "build-wordpress", "check-modules clean lint build-pages build-resources"); +grunt.registerTask( "build-wordpress", + "check-modules clean lint build-pages build-resources build-member-list" ); grunt.registerTask( "deploy", "wordpress-deploy" ); }; diff --git a/pages/index.html b/pages/index.html index 58da694..091ea6d 100644 --- a/pages/index.html +++ b/pages/index.html @@ -52,14 +52,13 @@

    What is jQuery?

    extensibility, jQuery has changed the way that millions of people write JavaScript.

    -

    Who's Using jQuery

    - - +

    Corporate Members

    + +

    Support from our corporate members makes it possible for the jQuery + Foundation to continue our work on our JavaScript libraries and pushing + the open web forward with events and participation in the standards process. + View our members page for a full + list of corporate and individual members.

    Other jQuery Foundation Projects

    From 596fc9a44d79a49e2c8bc693e8b153fa6cd6414b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 2 Dec 2013 15:18:57 -0500 Subject: [PATCH 028/382] 2.0.11 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ed734f3..8adbd0a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.10", + "version": "2.0.11", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 0a923f9383615ac4eaa94290e4fa72f88536f2b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 13 Dec 2013 12:21:07 -0500 Subject: [PATCH 029/382] 1.9 Upgrade Guide: AJAX -> Ajax --- pages/upgrade-guide/1.9.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/upgrade-guide/1.9.md b/pages/upgrade-guide/1.9.md index 59f09ab..1adcbae 100644 --- a/pages/upgrade-guide/1.9.md +++ b/pages/upgrade-guide/1.9.md @@ -63,9 +63,9 @@ Prior to 1.9, `.after()`, `.before()`, and `.replaceWith()` would attempt to add As of 1.9, these methods _always_ return a new set, making them consistently usable with chaining and the `.end()` method. Prior to 1.9, they would return the old set only if there was a single target element. Note that these methods have always returned the aggregate set of all elements appended to the target elements. If no elements are selected by the target selector (e.g., `$(elements).appendTo("#not_found")`) the resulting set will be empty. -### AJAX events should be attached to document +### Ajax events should be attached to document -As of jQuery 1.9, the global AJAX events (ajaxStart, ajaxStop, ajaxSend, ajaxComplete, ajaxError, and ajaxSuccess) are only triggered on the `document` element. Change the program to listen for the AJAX events on the document. For example, if the code currently looks like this: +As of jQuery 1.9, the global Ajax events (ajaxStart, ajaxStop, ajaxSend, ajaxComplete, ajaxError, and ajaxSuccess) are only triggered on the `document` element. Change the program to listen for the Ajax events on the document. For example, if the code currently looks like this: ```javascript $("#status").ajaxStart(function(){ $(this).text("Ajax started"); }); ``` From 531eeaa0d278fc412a3a96a7a5440425d0459a17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 13 Dec 2013 12:21:12 -0500 Subject: [PATCH 030/382] 2.0.12 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8adbd0a..4cd8eab 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.11", + "version": "2.0.12", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From ac3a17627bbf816e5c90ea8d865d2e6e959e2e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 31 Dec 2013 09:58:07 -0500 Subject: [PATCH 031/382] Docs: Removed IRC channel links in CONTRIBUTING.md GitHub doesn't support links with the irc protocol, so these were dead links. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1655b4c..e5d31dc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,4 +2,4 @@ Welcome! Thanks for your interest in contributing to jquery.com. You're **almost You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla). -You can find us on [IRC](http://irc.jquery.org), specifically in [#jquery-content](irc://irc.freenode.net/#jquery-content) should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/). +You can find us on [IRC](http://irc.jquery.org), specifically in #jquery-content should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/). From a659ae5f60d24993997f73149bbcba572a82f734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 6 Jan 2014 14:11:00 -0500 Subject: [PATCH 032/382] Build: Upgrade to grunt-jquery-content 0.11.1 --- package.json | 2 +- pages/upgrade-guide.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4cd8eab..9efcde9 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "grunt-clean": "0.3.0", "grunt-html": "0.1.1", "grunt-wordpress": "1.0.7", - "grunt-jquery-content": "0.9.0", + "grunt-jquery-content": "0.11.1", "grunt-check-modules": "0.1.0" } } diff --git a/pages/upgrade-guide.md b/pages/upgrade-guide.md index 7fba093..7fd3cdd 100644 --- a/pages/upgrade-guide.md +++ b/pages/upgrade-guide.md @@ -1,5 +1,6 @@ ## [1.9 Upgrade Guide](/upgrade-guide/1.9/) From 90f089719b7ba6447ff208f8b65ceb53cb8e19c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 6 Jan 2014 14:14:00 -0500 Subject: [PATCH 033/382] 2.0.13 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9efcde9..66b4cf6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.12", + "version": "2.0.13", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 0b3d19721e00aa25bb8912aa2c227379b4685af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 8 Jan 2014 11:23:17 -0500 Subject: [PATCH 034/382] Browser Support: Add note about pre-releases --- pages/browser-support.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/browser-support.html b/pages/browser-support.html index b4b9823..135978a 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -39,6 +39,8 @@

    Current Active Support

    Unsupported Browsers

    While jQuery might run without major issues in older browser versions, we do not actively test jQuery in them and generally do not fix bugs that may appear in them.

    +

    Similarly, jQuery does not fix bugs in pre-release versions of browsers, such as beta or dev releases. If you find a bug with jQuery in a pre-release of a browser, you should report the bug to the browser vendor.

    +

    About Browser Support

    From c99a9281bc28e03f6a69bc14c3e0e31a65218c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 8 Jan 2014 11:23:50 -0500 Subject: [PATCH 035/382] 2.0.14 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 66b4cf6..70313a7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.13", + "version": "2.0.14", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 9256dd2a8b1012318479c9c7e4e83d7ec17ae7f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 8 Jan 2014 18:07:57 -0500 Subject: [PATCH 036/382] Browser Support: Simplify wording --- pages/browser-support.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 135978a..04c1649 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -31,7 +31,7 @@

    Current Active Support

    -

    Any problem with jQuery in the above browsers should be considered and reported as a bug in jQuery.

    +

    Any problem with jQuery in the above browsers should be reported as a bug in jQuery.

    (Current - 1) or Current denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions.

    12.1x, (Current - 1) or Current denotes that we support Opera 12.1x as well as last 2 versions of Opera. For example, if the current Opera version is 20.x, we support Opera 12.1x, 19.x and 20.x but not Opera 15.x through 18.x.


    From 4900f1d79c3928c7f6dc66dd9c76f8231ade3b05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 8 Jan 2014 18:08:07 -0500 Subject: [PATCH 037/382] 2.0.15 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 70313a7..99ff0a8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.14", + "version": "2.0.15", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 158e1be272301e580abc231f615a097e466843db Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Fri, 24 Jan 2014 09:56:18 -0500 Subject: [PATCH 038/382] Pages: Update references to jQuery 1.11.0 and 2.1.0 --- pages/download.md | 21 ++++++++++----------- pages/index.html | 2 +- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/pages/download.md b/pages/download.md index a7a9aaf..e909798 100644 --- a/pages/download.md +++ b/pages/download.md @@ -8,10 +8,9 @@ ## Downloading jQuery Compressed and uncompressed copies of jQuery files are available. The uncompressed file is best used during development or debugging; the compressed file saves bandwidth and improves performance in production. -Starting with jQuery 1.9, we also make available -[sourcemap files](http://blog.jquery.com/2013/01/09/jquery-1-9-rc1-and-migrate-rc1-released/#sourcemaps) -that can be used to debug the compressed file in sourcemap-aware browsers such as Google Chrome. +You can also download a [sourcemap file](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) for use when debugging with a compressed file. The map file is _not_ required for users to run jQuery, it just improves the developer's debugger experience. +As of jQuery 1.11.0/2.1.0 the `// sourceMappingURL` comment is [not included](http://blog.jquery.com/?p=3344) in the compressed file. To locally download these files, right-click the link and select "Save as..." from the menu. @@ -24,13 +23,13 @@ Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -[Download the compressed, production jQuery 1.10.2](http://code.jquery.com/jquery-1.10.2.min.js) +[Download the compressed, production jQuery 1.11.0](http://code.jquery.com/jquery-1.11.0.min.js) -[Download the uncompressed, development jQuery 1.10.2](http://code.jquery.com/jquery-1.10.2.js) +[Download the uncompressed, development jQuery 1.11.0](http://code.jquery.com/jquery-1.11.0.js) -[Download the map file for jQuery 1.10.2](http://code.jquery.com/jquery-1.10.2.min.map) +[Download the map file for jQuery 1.11.0](http://code.jquery.com/jquery-1.11.0.min.map) -[jQuery 1.10.2 release notes](http://blog.jquery.com/?p=3006) +[jQuery 1.11.0 release notes](http://blog.jquery.com/?p=3344) ### jQuery 2.x @@ -40,13 +39,13 @@ Since IE 6/7/8 are still relatively common, we recommend using the 1.x version u are certain no IE 6/7/8 users are visiting the site. Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -[Download the compressed, production jQuery 2.0.3](http://code.jquery.com/jquery-2.0.3.min.js) +[Download the compressed, production jQuery 2.1.0](http://code.jquery.com/jquery-2.1.0.min.js) -[Download the uncompressed, development jQuery 2.0.3](http://code.jquery.com/jquery-2.0.3.js) +[Download the uncompressed, development jQuery 2.1.0](http://code.jquery.com/jquery-2.1.0.js) -[Download the map file for jQuery 2.0.3](http://code.jquery.com/jquery-2.0.3.min.map) +[Download the map file for jQuery 2.1.0](http://code.jquery.com/jquery-2.1.0.min.map) -[jQuery 2.0.3 release notes](http://blog.jquery.com/?p=3006) +[jQuery 2.1.0 release notes](http://blog.jquery.com/?p=3344) ## jQuery Migrate Plugin diff --git a/pages/index.html b/pages/index.html index 091ea6d..0961249 100644 --- a/pages/index.html +++ b/pages/index.html @@ -12,7 +12,7 @@ Download jQuery - v1.10.2 or v2.0.3 + v1.11.0 or v2.1.0
    View Source on GitHub → From 86236cb11c12edb6e42870ba870255e7df9cd8df Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Fri, 24 Jan 2014 09:56:49 -0500 Subject: [PATCH 039/382] 2.0.16 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 99ff0a8..ad470e0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.15", + "version": "2.0.16", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 48294eba8d49d9206cc01558463d7c9a6010ce5d Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 13 Feb 2014 09:47:50 -0800 Subject: [PATCH 040/382] Update CDN link to 1.11.0. --- pages/download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/download.md b/pages/download.md index e909798..708efe6 100644 --- a/pages/download.md +++ b/pages/download.md @@ -77,7 +77,7 @@ if the visitor to your webpage has already downloaded a copy of jQuery from the To use the jQuery CDN, just reference the file directly from `http://code.jquery.com` in the script tag: ``` - + ``` From ffd552bf2c407bcd3d90acb26ed69ce626360588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Thu, 13 Feb 2014 10:04:22 -0800 Subject: [PATCH 041/382] 2.0.17 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ad470e0..3d12828 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.16", + "version": "2.0.17", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 7c75224cead0ae770b45c46128cc8533e429231c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Thu, 13 Feb 2014 15:29:22 -0800 Subject: [PATCH 042/382] Browser Support: Drop support for Safari<6.0 --- pages/browser-support.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 04c1649..6fc6c11 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -21,7 +21,7 @@

    Current Active Support

    6+ (Current - 1) or Current (Current - 1) or Current - 5.1+ + 6.0+ 12.1x, (Current - 1) or Current From 5e7514b709970574df41fefaa546e45c23f584a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Thu, 13 Feb 2014 15:29:33 -0800 Subject: [PATCH 043/382] 2.0.18 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3d12828..c7e8a84 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.17", + "version": "2.0.18", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From a3382c9cbb03de4f27c9d6d1ba19e3695e739094 Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Mon, 24 Feb 2014 10:45:16 -0600 Subject: [PATCH 044/382] 2.0.19 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c7e8a84..69ea8a4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.18", + "version": "2.0.19", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 97d1c22327f977d78d8936baf1d13baa5d25250a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 24 Feb 2014 19:02:56 +0100 Subject: [PATCH 045/382] Revert "Browser Support: Drop support for Safari<6.0" This reverts commit 7c75224cead0ae770b45c46128cc8533e429231c. --- pages/browser-support.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 6fc6c11..04c1649 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -21,7 +21,7 @@

    Current Active Support

    6+ (Current - 1) or Current (Current - 1) or Current - 6.0+ + 5.1+ 12.1x, (Current - 1) or Current From 466381235f4af62399f9ea4a1550dcf6773b110c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 24 Feb 2014 19:03:21 +0100 Subject: [PATCH 046/382] 2.0.20 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 69ea8a4..70f91ad 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.19", + "version": "2.0.20", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 0a0550166e5f758d487273d48d3f40fb5002681f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Wed, 5 Mar 2014 23:01:08 +0100 Subject: [PATCH 047/382] Download: Fix the sourceMappingURL comment syntax --- pages/download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/download.md b/pages/download.md index 708efe6..fae8286 100644 --- a/pages/download.md +++ b/pages/download.md @@ -10,7 +10,7 @@ Compressed and uncompressed copies of jQuery files are available. The uncompressed file is best used during development or debugging; the compressed file saves bandwidth and improves performance in production. You can also download a [sourcemap file](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) for use when debugging with a compressed file. The map file is _not_ required for users to run jQuery, it just improves the developer's debugger experience. -As of jQuery 1.11.0/2.1.0 the `// sourceMappingURL` comment is [not included](http://blog.jquery.com/?p=3344) in the compressed file. +As of jQuery 1.11.0/2.1.0 the `//# sourceMappingURL` comment is [not included](http://blog.jquery.com/?p=3344) in the compressed file. To locally download these files, right-click the link and select "Save as..." from the menu. From 290046dc32f39a0a8febbd6a91998370e865515f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Wed, 5 Mar 2014 23:01:15 +0100 Subject: [PATCH 048/382] 2.0.21 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 70f91ad..922a061 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.20", + "version": "2.0.21", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 7439c1f8382b4fc6c3abcde4126690377fcc986f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Wed, 5 Mar 2014 23:16:50 +0100 Subject: [PATCH 049/382] Download: Fix the link to Google CDN docs Fixes #59 --- pages/download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/download.md b/pages/download.md index fae8286..6259489 100644 --- a/pages/download.md +++ b/pages/download.md @@ -91,7 +91,7 @@ The following CDNs also host compressed and uncompressed versions of jQuery rele **Note that there may be delays between a jQuery release and its availability there. Please be patient, they receive the files at the same time the blog post is made public. Beta and release candidates are not hosted by these CDNs.** -* [Google CDN](http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery) +* [Google CDN](https://developers.google.com/speed/libraries/devguide#jquery) * [Microsoft CDN](http://www.asp.net/ajaxlibrary/cdn.ashx#jQuery_Releases_on_the_CDN_0) * [CDNJS CDN](http://cdnjs.com/libraries/jquery/) From 2484e66954709e85481be281eb13205db5836c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Wed, 5 Mar 2014 23:21:47 +0100 Subject: [PATCH 050/382] 2.0.22 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 922a061..c70c3c1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.21", + "version": "2.0.22", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From bd5db06a1c7065c04ae04afcfa09cd03183b6fe9 Mon Sep 17 00:00:00 2001 From: tomByrer Date: Sat, 29 Mar 2014 16:36:56 -0600 Subject: [PATCH 051/382] Download: Added jsDelivr CDN Fixes gh-63 --- pages/download.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/download.md b/pages/download.md index 6259489..fc77410 100644 --- a/pages/download.md +++ b/pages/download.md @@ -94,6 +94,7 @@ The following CDNs also host compressed and uncompressed versions of jQuery rele * [Google CDN](https://developers.google.com/speed/libraries/devguide#jquery) * [Microsoft CDN](http://www.asp.net/ajaxlibrary/cdn.ashx#jQuery_Releases_on_the_CDN_0) * [CDNJS CDN](http://cdnjs.com/libraries/jquery/) +* [jsDelivr CDN](http://www.jsdelivr.com/#!jquery) ## About the Code From 72f2bbd7651546836470419f552df7a89ee1802d Mon Sep 17 00:00:00 2001 From: Corey Frang Date: Sun, 30 Mar 2014 20:20:24 -0400 Subject: [PATCH 052/382] 2.0.23 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c70c3c1..3fe8ea6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.22", + "version": "2.0.23", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 9363e4a61b88ff18507957ac6dea3ab2ca65a9ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Tue, 1 Apr 2014 00:04:06 +0200 Subject: [PATCH 053/382] Browser support: Add iOS 6.0+ & Android 4.0+ --- pages/browser-support.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/browser-support.html b/pages/browser-support.html index 04c1649..7422054 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -13,6 +13,8 @@

    Current Active Support

    Firefox Safari Opera + iOS + Android @@ -23,6 +25,8 @@

    Current Active Support

    (Current - 1) or Current 5.1+ 12.1x, (Current - 1) or Current + 6.0+ + 4.0+ jQuery 2.x From be63a06520d3638789beee02e00ddaf69f13cb5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Tue, 1 Apr 2014 00:04:13 +0200 Subject: [PATCH 054/382] 2.0.24 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3fe8ea6..ff81e71 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.23", + "version": "2.0.24", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 580bd86eff90750162c646969a7f259dd0f9057f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 3 Apr 2014 08:41:53 -0400 Subject: [PATCH 055/382] Download: Use protocol-relative URLs for CDN example Fixes gh-64 --- pages/download.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/download.md b/pages/download.md index fc77410..72386be 100644 --- a/pages/download.md +++ b/pages/download.md @@ -77,8 +77,8 @@ if the visitor to your webpage has already downloaded a copy of jQuery from the To use the jQuery CDN, just reference the file directly from `http://code.jquery.com` in the script tag: ``` - - + + ``` Starting with jQuery 1.9, [sourcemap files](http://blog.jquery.com/2013/01/09/jquery-1-9-rc1-and-migrate-rc1-released/#sourcemaps) are available on the jQuery CDN as well. If compressed files are included directly from the CDN as shown above, sourcemap-aware browsers such as Google Chrome will use them when you enable sourcemap support. From afe1437a79dd5e7270220dbf38e52de3a0d62d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 3 Apr 2014 08:42:29 -0400 Subject: [PATCH 056/382] 2.0.25 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ff81e71..ba3b3d1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.24", + "version": "2.0.25", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 704aa86c8819f12a964974aa3d91c1a07697b073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 14 Apr 2014 11:26:39 -0400 Subject: [PATCH 057/382] Build: Normalize line endings --- .gitattributes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..b7ca95b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# JS files must always use LF for tools to work +*.js eol=lf From 6d9fc537a456e70deec212f657752b3abbe70e20 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Fri, 2 May 2014 08:05:09 -0400 Subject: [PATCH 058/382] jQuery core 1.11.1 and 2.1.1 release --- pages/download.md | 32 ++++++++++---------------------- pages/index.html | 2 +- 2 files changed, 11 insertions(+), 23 deletions(-) diff --git a/pages/download.md b/pages/download.md index 72386be..8f6d4ae 100644 --- a/pages/download.md +++ b/pages/download.md @@ -23,29 +23,29 @@ Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -[Download the compressed, production jQuery 1.11.0](http://code.jquery.com/jquery-1.11.0.min.js) +[Download the compressed, production jQuery 1.11.1](http://code.jquery.com/jquery-1.11.1.min.js) -[Download the uncompressed, development jQuery 1.11.0](http://code.jquery.com/jquery-1.11.0.js) +[Download the uncompressed, development jQuery 1.11.1](http://code.jquery.com/jquery-1.11.1.js) -[Download the map file for jQuery 1.11.0](http://code.jquery.com/jquery-1.11.0.min.map) +[Download the map file for jQuery 1.11.1](http://code.jquery.com/jquery-1.11.1.min.map) -[jQuery 1.11.0 release notes](http://blog.jquery.com/?p=3344) +[jQuery 1.11.1 release notes](http://blog.jquery.com/?p=3467) ### jQuery 2.x jQuery 2.x has the same API as jQuery 1.x, but _does not support Internet Explorer 6, 7, or 8_. All the notes in the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) apply here as well. -Since IE 6/7/8 are still relatively common, we recommend using the 1.x version unless you +Since IE 8 is still relatively common, we recommend using the 1.x version unless you are certain no IE 6/7/8 users are visiting the site. Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -[Download the compressed, production jQuery 2.1.0](http://code.jquery.com/jquery-2.1.0.min.js) +[Download the compressed, production jQuery 2.1.1](http://code.jquery.com/jquery-2.1.1.min.js) -[Download the uncompressed, development jQuery 2.1.0](http://code.jquery.com/jquery-2.1.0.js) +[Download the uncompressed, development jQuery 2.1.1](http://code.jquery.com/jquery-2.1.1.js) -[Download the map file for jQuery 2.1.0](http://code.jquery.com/jquery-2.1.0.min.map) +[Download the map file for jQuery 2.1.1](http://code.jquery.com/jquery-2.1.1.min.map) -[jQuery 2.1.0 release notes](http://blog.jquery.com/?p=3344) +[jQuery 2.1.1 release notes](http://blog.jquery.com/?p=3467) ## jQuery Migrate Plugin @@ -129,17 +129,5 @@ The README file for a specific version will have instructions for building that ## Past Releases -All past releases can be found on the [jQuery CDN](http://code.jquery.com). Here are some commonly used recent versions: - - - - - - - - - - - -
    VersionDocsDownloads
    2.0.2Release NotesMinified Uncompressed
    1.10.1Release NotesMinified Uncompressed
    1.9.1Release NotesMinified Uncompressed
    1.8.3Release NotesMinified Uncompressed
    1.7.2Release NotesMinified Uncompressed
    1.6.4Release NotesMinified Uncompressed
    +All past releases can be found on the [jQuery CDN](http://code.jquery.com). diff --git a/pages/index.html b/pages/index.html index 0961249..af7f133 100644 --- a/pages/index.html +++ b/pages/index.html @@ -12,7 +12,7 @@ Download jQuery - v1.11.0 or v2.1.0 + v1.11.1 or v2.1.1
    View Source on GitHub → From 48ee7d818c3958df260ac00e2a0cfa61c99dbdf7 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Fri, 2 May 2014 08:05:58 -0400 Subject: [PATCH 059/382] 2.0.26 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ba3b3d1..a12906a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.25", + "version": "2.0.26", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 350e75cc208ad57ac0070c1a0d6ea4fdff40a2d8 Mon Sep 17 00:00:00 2001 From: Ryan Neufeld Date: Fri, 2 May 2014 09:39:36 -0700 Subject: [PATCH 060/382] Grunt: Fix incorrect github rawurl. https.request() does not follow redirects. Fixes gh-68 --- grunt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt.js b/grunt.js index 21fb871..76713b3 100644 --- a/grunt.js +++ b/grunt.js @@ -48,7 +48,7 @@ grunt.registerTask( "build-member-list", function() { function getMembers( level, callback ) { var request = https.request({ - host: "raw.github.com", + host: "raw.githubusercontent.com", path: "/jquery/jquery.org/master/data/members/" + level + ".json" }, function ( response ) { var json = ""; From 6b9991d7e7583089947df41bdfa6823e6555cdec Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Fri, 2 May 2014 13:02:39 -0400 Subject: [PATCH 061/382] 2.0.27 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a12906a..d8dca76 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.26", + "version": "2.0.27", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From a3e20a9a7e1d6257f2266fd9577a3d079cca9e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 15 May 2014 19:09:58 -0400 Subject: [PATCH 062/382] Build: Use vagrant for sample config --- config-sample.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-sample.json b/config-sample.json index 5211344..4e6f6a4 100644 --- a/config-sample.json +++ b/config-sample.json @@ -1,5 +1,5 @@ { - "url": "local.jquery.com", + "url": "vagrant.jquery.com", "username": "admin", "password": "secret" } From 84c9810bd25177e1f391b34c042b7a37c6a8f1c4 Mon Sep 17 00:00:00 2001 From: Stephen Hurwitz Date: Wed, 19 Mar 2014 15:16:07 -0700 Subject: [PATCH 063/382] Download: Add instructions for downloading with Bower Closes gh-61 Related to jquery/jquery#1542 --- pages/download.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pages/download.md b/pages/download.md index 8f6d4ae..3935af0 100644 --- a/pages/download.md +++ b/pages/download.md @@ -47,6 +47,18 @@ Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0 [jQuery 2.1.1 release notes](http://blog.jquery.com/?p=3467) +## Downloading jQuery using Bower +jQuery is registered as a package with [Bower](http://bower.io). You can install the latest version of jQuery with the command: +``` +bower install jquery +``` +This will install jQuery to Bower's install directory, the default being `bower_components`. Within `bower_components/jquery/dist/` you will find an uncompressed release, a compressed release, and a map file. + +The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on it's own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: +``` +bower install http://code.jquery.com/jquery-2.1.0.min.js +``` + ## jQuery Migrate Plugin We have created the [jQuery Migrate plugin](http://github.com/jquery/jquery-migrate/#readme) From 8c2a2043b10048a7add9b73bbffe02afa4c76d78 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Wed, 21 May 2014 20:03:05 -0400 Subject: [PATCH 064/382] 2.0.28 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d8dca76..7d68e36 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.27", + "version": "2.0.28", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From e542804eebb340e41a1e7addd2aa284b1fe1a1fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 26 May 2014 12:18:40 -0400 Subject: [PATCH 065/382] Download: Use @download to trigger downloads for all release links --- pages/download.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pages/download.md b/pages/download.md index 3935af0..be3e14b 100644 --- a/pages/download.md +++ b/pages/download.md @@ -23,11 +23,11 @@ Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -[Download the compressed, production jQuery 1.11.1](http://code.jquery.com/jquery-1.11.1.min.js) +Download the compressed, production jQuery 1.11.1 -[Download the uncompressed, development jQuery 1.11.1](http://code.jquery.com/jquery-1.11.1.js) +Download the uncompressed, development jQuery 1.11.1 -[Download the map file for jQuery 1.11.1](http://code.jquery.com/jquery-1.11.1.min.map) +Download the map file for jQuery 1.11.1 [jQuery 1.11.1 release notes](http://blog.jquery.com/?p=3467) @@ -39,11 +39,11 @@ Since IE 8 is still relatively common, we recommend using the 1.x version unless are certain no IE 6/7/8 users are visiting the site. Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -[Download the compressed, production jQuery 2.1.1](http://code.jquery.com/jquery-2.1.1.min.js) +Download the compressed, production jQuery 2.1.1 -[Download the uncompressed, development jQuery 2.1.1](http://code.jquery.com/jquery-2.1.1.js) +Download the uncompressed, development jQuery 2.1.1 -[Download the map file for jQuery 2.1.1](http://code.jquery.com/jquery-2.1.1.min.map) +Download the map file for jQuery 2.1.1 [jQuery 2.1.1 release notes](http://blog.jquery.com/?p=3467) @@ -64,9 +64,9 @@ bower install http://code.jquery.com/jquery-2.1.0.min.js We have created the [jQuery Migrate plugin](http://github.com/jquery/jquery-migrate/#readme) to simplify the transition from older versions of jQuery. The plugin restores deprecated features and behaviors so that older code will still run properly on jQuery 1.9 and later. Use the _uncompressed development_ version to diagnose compatiblity issues, it will generate warnings on the console that you can use to identify and fix problems. Use the _compressed production_ version to simply fix compatibility issues without generating console warnings. -[Download the compressed, production jQuery Migrate 1.2.1](http://code.jquery.com/jquery-migrate-1.2.1.min.js) +Download the compressed, production jQuery Migrate 1.2.1 -[Download the uncompressed, development jQuery Migrate 1.2.1](http://code.jquery.com/jquery-migrate-1.2.1.js) +Download the uncompressed, development jQuery Migrate 1.2.1 ## Cross-Browser Testing with jQuery @@ -76,9 +76,9 @@ Be sure to test web pages that use jQuery in all the browsers you want to suppor The jQuery team is constantly working to improve the code. Each commit to the Github repo generates a work-in-progress version of the code that we update on the jQuery CDN. _These versions are sometimes unstable and not suitable for production sites._ We recommend they be used to determine whether a bug has already been fixed when reporting bugs against released versions, or to see if new bugs have been introduced. There are two versions, one for the 1.x branch (supports IE 6/7/8) and one for the 2.x branch (not for use with old IE). -[Download the work-in-progress jQuery **1.x** build - http://code.jquery.com/jquery-git1.js](http://code.jquery.com/jquery-git1.js) +Download the work-in-progress jQuery **1.x** build -[Download the work-in-progress jQuery **2.x** build - http://code.jquery.com/jquery-git2.js](http://code.jquery.com/jquery-git2.js) +Download the work-in-progress jQuery **2.x** build ## Using jQuery with a CDN From 8621a3621e23ca6e340761300f7d69cff371131a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 27 May 2014 15:16:47 -0400 Subject: [PATCH 066/382] Build: Update license Closes gh-73 --- LICENSE-MIT.txt => LICENSE.txt | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) rename LICENSE-MIT.txt => LICENSE.txt (63%) diff --git a/LICENSE-MIT.txt b/LICENSE.txt similarity index 63% rename from LICENSE-MIT.txt rename to LICENSE.txt index 4d8f526..1030842 100644 --- a/LICENSE-MIT.txt +++ b/LICENSE.txt @@ -1,8 +1,14 @@ -Copyright (c) 2013 jQuery Foundation, http://jquery.org/ +Copyright 2007, 2014 jQuery Foundation and other contributors, +https://jquery.org/ This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history -and logs, available at http://github.com/jquery/jquery.com +available at https://github.com/jquery/jquery.com + +The following license applies to all parts of this software except as +documented below: + +==== Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -22,3 +28,18 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules directory are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. From 908296057bd027f60c27933f7d02da8cfb8f7915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 14 Jul 2014 18:34:55 +0200 Subject: [PATCH 067/382] Browser support: Drop support for iOS 6.0 (but keep for 6.1) --- pages/browser-support.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 7422054..6e0e727 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -25,7 +25,7 @@

    Current Active Support

    (Current - 1) or Current 5.1+ 12.1x, (Current - 1) or Current - 6.0+ + 6.1+ 4.0+ From 3a60df3520586b19198060e1836f7e90d511c34c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 14 Jul 2014 18:35:25 +0200 Subject: [PATCH 068/382] 2.0.29 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7d68e36..769f526 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.28", + "version": "2.0.29", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 93f392cfeb9fcb99c31fe1663c45af5247225a07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 14 Jul 2014 18:49:51 +0200 Subject: [PATCH 069/382] Browser support: Mark Android 2.3 as supported --- pages/browser-support.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 6e0e727..e3cdeb6 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -26,7 +26,7 @@

    Current Active Support

    5.1+ 12.1x, (Current - 1) or Current 6.1+ - 4.0+ + 2.3, 4.0+ jQuery 2.x From 8f93c907918b2b34d269cc0adfa5b97a361c93a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 14 Jul 2014 18:50:03 +0200 Subject: [PATCH 070/382] 2.0.30 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 769f526..5cb1a2c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.29", + "version": "2.0.30", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 97b8045f9e5311c207fb45caa082288e843c1cf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 19 Aug 2014 16:52:40 -0400 Subject: [PATCH 071/382] Build: Upgrade to grunt-jquery-content 0.12.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5cb1a2c..c307620 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "grunt-clean": "0.3.0", "grunt-html": "0.1.1", "grunt-wordpress": "1.0.7", - "grunt-jquery-content": "0.11.1", + "grunt-jquery-content": "0.12.0", "grunt-check-modules": "0.1.0" } } From fd89b151edc377227e996ab50287ba5e8a218b5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 19 Aug 2014 16:53:26 -0400 Subject: [PATCH 072/382] 2.0.31 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c307620..782082e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.30", + "version": "2.0.31", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 16f0ae93224ca326ec44e539fc12c7217d76570c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Sat, 13 Sep 2014 11:22:32 -0500 Subject: [PATCH 073/382] Build: Upgrade to grunt-wordpress 1.1.0 and grunt-jquery-content 0.12.1 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 782082e..460524d 100644 --- a/package.json +++ b/package.json @@ -24,8 +24,8 @@ "grunt": "0.3.17", "grunt-clean": "0.3.0", "grunt-html": "0.1.1", - "grunt-wordpress": "1.0.7", - "grunt-jquery-content": "0.12.0", + "grunt-wordpress": "1.1.0", + "grunt-jquery-content": "0.12.1", "grunt-check-modules": "0.1.0" } } From c0b912772841b3ee602e20b4c72e42062960d07c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Sat, 13 Sep 2014 16:37:05 -0500 Subject: [PATCH 074/382] 2.0.32 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 460524d..419845e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.31", + "version": "2.0.32", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 1dc6559f85f4adeab13562249f7e1e7890af01ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 30 Sep 2014 14:40:38 -0400 Subject: [PATCH 075/382] Build: Upgrade to grunt-wordpress 1.2.1 and grunt-jquery-content 0.13.0 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 419845e..a483804 100644 --- a/package.json +++ b/package.json @@ -24,8 +24,8 @@ "grunt": "0.3.17", "grunt-clean": "0.3.0", "grunt-html": "0.1.1", - "grunt-wordpress": "1.1.0", - "grunt-jquery-content": "0.12.1", + "grunt-wordpress": "1.2.1", + "grunt-jquery-content": "0.13.0", "grunt-check-modules": "0.1.0" } } From 28d88d6e6b12a25c63ea0a7529981b9b18d801cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 30 Sep 2014 14:45:19 -0400 Subject: [PATCH 076/382] 2.0.33 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a483804..936fe8f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.32", + "version": "2.0.33", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From bb9948e92c73c626fc61750327600411d1c19f88 Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Mon, 6 Oct 2014 20:04:21 +0200 Subject: [PATCH 077/382] Index: Update link to bug tracker Fixes gh-81 Closes gh-82 --- pages/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.html b/pages/index.html index af7f133..511ca3c 100644 --- a/pages/index.html +++ b/pages/index.html @@ -86,7 +86,7 @@

    Resources

  • jQuery Blog
  • Contribute to jQuery
  • About the jQuery Foundation
  • -
  • Browse or Submit jQuery Bugs
  • +
  • Browse or Submit jQuery Bugs
  • Try jQuery
From eccb3023b8f64529572e0fd507e0fc8dc261e6a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 9 Oct 2014 15:32:10 -0400 Subject: [PATCH 078/382] 2.0.34 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 936fe8f..f456374 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.33", + "version": "2.0.34", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation", From 6a64094cf9a63ff93e1312183e74f2ae1e252cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 2 Dec 2014 15:49:00 -0500 Subject: [PATCH 079/382] Build: Remove grunt-html --- grunt.js | 4 ---- package.json | 1 - 2 files changed, 5 deletions(-) diff --git a/grunt.js b/grunt.js index 76713b3..23b2a84 100644 --- a/grunt.js +++ b/grunt.js @@ -3,7 +3,6 @@ module.exports = function( grunt ) { grunt.loadNpmTasks( "grunt-clean" ); -grunt.loadNpmTasks( "grunt-html" ); grunt.loadNpmTasks( "grunt-wordpress" ); grunt.loadNpmTasks( "grunt-jquery-content" ); grunt.loadNpmTasks( "grunt-check-modules" ); @@ -12,9 +11,6 @@ grunt.initConfig({ clean: { folder: "dist/" }, - htmllint: { - page: "page/*.html" - }, jshint: { options: { undef: true, diff --git a/package.json b/package.json index f456374..ea8cce5 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,6 @@ "dependencies": { "grunt": "0.3.17", "grunt-clean": "0.3.0", - "grunt-html": "0.1.1", "grunt-wordpress": "1.2.1", "grunt-jquery-content": "0.13.0", "grunt-check-modules": "0.1.0" From 845504a95625fd998ef02af761da459ed5e4a483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 2 Dec 2014 15:51:02 -0500 Subject: [PATCH 080/382] Build: Replace grunt-clean with rimraf --- grunt.js | 9 ++++++--- package.json | 4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/grunt.js b/grunt.js index 23b2a84..8c2b37a 100644 --- a/grunt.js +++ b/grunt.js @@ -1,5 +1,7 @@ "use strict"; +var rimraf = require( "rimraf" ); + module.exports = function( grunt ) { grunt.loadNpmTasks( "grunt-clean" ); @@ -8,9 +10,6 @@ grunt.loadNpmTasks( "grunt-jquery-content" ); grunt.loadNpmTasks( "grunt-check-modules" ); grunt.initConfig({ - clean: { - folder: "dist/" - }, jshint: { options: { undef: true, @@ -37,6 +36,10 @@ grunt.initConfig({ }, grunt.file.readJSON( "config.json" ) ) }); +grunt.registerTask( "clean", function() { + rimraf.sync( "dist" ); +}); + grunt.registerTask( "build-member-list", function() { var https = require( "https" ), done = this.async(), diff --git a/package.json b/package.json index ea8cce5..bf10c5c 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,9 @@ ], "dependencies": { "grunt": "0.3.17", - "grunt-clean": "0.3.0", "grunt-wordpress": "1.2.1", "grunt-jquery-content": "0.13.0", - "grunt-check-modules": "0.1.0" + "grunt-check-modules": "0.1.0", + "rimraf": "2.2.8" } } From 787cad64b59d11c6ea6557814bd299292fe684b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 2 Dec 2014 15:53:22 -0500 Subject: [PATCH 081/382] Build: Remove unused tasks --- grunt.js | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) diff --git a/grunt.js b/grunt.js index 8c2b37a..30023ca 100644 --- a/grunt.js +++ b/grunt.js @@ -1,30 +1,12 @@ -"use strict"; - var rimraf = require( "rimraf" ); module.exports = function( grunt ) { -grunt.loadNpmTasks( "grunt-clean" ); -grunt.loadNpmTasks( "grunt-wordpress" ); -grunt.loadNpmTasks( "grunt-jquery-content" ); grunt.loadNpmTasks( "grunt-check-modules" ); +grunt.loadNpmTasks( "grunt-jquery-content" ); +grunt.loadNpmTasks( "grunt-wordpress" ); grunt.initConfig({ - jshint: { - options: { - undef: true, - node: true - } - }, - lint: { - grunt: "grunt.js" - }, - watch: { - pages: { - files: "pages/**/*", - tasks: "deploy" - } - }, "build-pages": { all: grunt.file.expandFiles( "pages/**" ) }, @@ -98,9 +80,7 @@ grunt.registerTask( "build-member-list", function() { }); }); -grunt.registerTask( "default", "lint wordpress-deploy" ); -grunt.registerTask( "build-wordpress", - "check-modules clean lint build-pages build-resources build-member-list" ); -grunt.registerTask( "deploy", "wordpress-deploy" ); +grunt.registerTask( "build", "build-pages build-resources build-member-list" ); +grunt.registerTask( "build-wordpress", "check-modules clean build" ); }; From be8f34346d6d6481ffdad0fecb932e56ef752547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 2 Dec 2014 15:53:42 -0500 Subject: [PATCH 082/382] Build: Remove dates from copyright notice --- LICENSE.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 1030842..35fafd6 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,4 @@ -Copyright 2007, 2014 jQuery Foundation and other contributors, -https://jquery.org/ +Copyright jQuery Foundation and other contributors, https://jquery.org/ This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history From edece15fd7311d7eff686cc9b15cf765378815c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 2 Dec 2014 15:54:20 -0500 Subject: [PATCH 083/382] README: Proper build instructions --- README.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3b4a501..babbabf 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,5 @@ -jquery.com -========== +# jquery.com -## Building - -### Requirements -* libxml2 -* libxslt - -The `xmllint` and `xsltproc` utilities need to be in your path. If you are on Windows, you can get libxml2 and libxslt from GnuWin32. - -### Build +## Building and Deploying To build and deploy your changes for previewing in a [`jquery-wp-content`](https://github.com/jquery/jquery-wp-content) instance, follow the [workflow instructions](http://contribute.jquery.org/web-sites/#workflow) from our documentation on [contributing to jQuery Foundation web sites](http://contribute.jquery.org/web-sites/). From e858288a949da55192c6e60539e0a5dfc377aff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 5 Dec 2014 10:19:55 -0500 Subject: [PATCH 084/382] Build: Upgrade to Grunt 0.4.5 * Upgrade to grunt-check-modules 0.2.0 * Upgrade to grunt-jquery-content 1.0.0 * Add async 0.9.0 --- .gitignore | 6 +++--- grunt.js => Gruntfile.js | 25 +++++++++++++------------ package.json | 8 ++++---- 3 files changed, 20 insertions(+), 19 deletions(-) rename grunt.js => Gruntfile.js (76%) diff --git a/.gitignore b/.gitignore index 3689b05..633f1bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ -node_modules -dist -config.json \ No newline at end of file +/dist/ +/node_modules/ +config.js* diff --git a/grunt.js b/Gruntfile.js similarity index 76% rename from grunt.js rename to Gruntfile.js index 30023ca..3333d3f 100644 --- a/grunt.js +++ b/Gruntfile.js @@ -1,21 +1,23 @@ -var rimraf = require( "rimraf" ); +var async = require( "async" ), + rimraf = require( "rimraf" ); module.exports = function( grunt ) { grunt.loadNpmTasks( "grunt-check-modules" ); grunt.loadNpmTasks( "grunt-jquery-content" ); -grunt.loadNpmTasks( "grunt-wordpress" ); grunt.initConfig({ "build-pages": { - all: grunt.file.expandFiles( "pages/**" ) + all: "pages/**" }, "build-resources": { - all: grunt.file.expandFiles( "resources/*" ) + all: "resources/**" }, - wordpress: grunt.utils._.extend({ - dir: "dist/wordpress" - }, grunt.file.readJSON( "config.json" ) ) + wordpress: (function() { + var config = require( "./config" ); + config.dir = "dist/wordpress"; + return config; + })() }); grunt.registerTask( "clean", function() { @@ -51,14 +53,13 @@ grunt.registerTask( "build-member-list", function() { request.end(); } - grunt.utils.async.parallel({ + async.parallel({ founding: getMembers.bind( null, "founding" ), platinum: getMembers.bind( null, "platinum" ), gold: getMembers.bind( null, "gold" ) }, function( error, members ) { if ( error ) { - grunt.log.error( error ); - return done( false ); + return done( error ); } var corporateMembers = members.founding @@ -80,7 +81,7 @@ grunt.registerTask( "build-member-list", function() { }); }); -grunt.registerTask( "build", "build-pages build-resources build-member-list" ); -grunt.registerTask( "build-wordpress", "check-modules clean build" ); +grunt.registerTask( "build", [ "build-pages", "build-resources", "build-member-list" ] ); +grunt.registerTask( "build-wordpress", [ "check-modules", "clean", "build" ] ); }; diff --git a/package.json b/package.json index bf10c5c..cb5e0f1 100644 --- a/package.json +++ b/package.json @@ -21,10 +21,10 @@ } ], "dependencies": { - "grunt": "0.3.17", - "grunt-wordpress": "1.2.1", - "grunt-jquery-content": "0.13.0", - "grunt-check-modules": "0.1.0", + "async": "0.9.0", + "grunt": "0.4.5", + "grunt-check-modules": "0.2.0", + "grunt-jquery-content": "1.0.0", "rimraf": "2.2.8" } } From 0093f9d65791157d1668c1573514a95555bf280e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 5 Dec 2014 10:21:15 -0500 Subject: [PATCH 085/382] Build: package.json cleanup --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index cb5e0f1..70b8967 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,7 @@ "version": "2.0.34", "homepage": "https://github.com/jquery/jquery.com", "author": { - "name": "jQuery Foundation", - "url": "http://jquery.org/" + "name": "jQuery Foundation and other contributors" }, "repository": { "type": "git", @@ -17,7 +16,7 @@ "licenses": [ { "type": "MIT", - "url": "http://www.opensource.org/licenses/MIT" + "url": "https://github.com/jquery/jquery.com/blob/master/LICENSE.txt" } ], "dependencies": { From eba5b604538500553fe51ff1a0b5b754c63d0708 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 5 Dec 2014 15:25:03 -0500 Subject: [PATCH 086/382] 2.1.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 70b8967..2236213 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.0.34", + "version": "2.1.0", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From bb90af2bd778d9dd46d4684bd0b88d50d8c1f82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 8 Dec 2014 13:02:55 -0500 Subject: [PATCH 087/382] Build: Upgrade to grunt-jquery-content 2.0.0 --- Gruntfile.js | 15 ++++----------- package.json | 4 +--- 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3333d3f..c7ae740 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,14 +1,12 @@ -var async = require( "async" ), - rimraf = require( "rimraf" ); +var async = require( "async" ); module.exports = function( grunt ) { -grunt.loadNpmTasks( "grunt-check-modules" ); grunt.loadNpmTasks( "grunt-jquery-content" ); grunt.initConfig({ - "build-pages": { - all: "pages/**" + "build-posts": { + page: "pages/**" }, "build-resources": { all: "resources/**" @@ -20,10 +18,6 @@ grunt.initConfig({ })() }); -grunt.registerTask( "clean", function() { - rimraf.sync( "dist" ); -}); - grunt.registerTask( "build-member-list", function() { var https = require( "https" ), done = this.async(), @@ -81,7 +75,6 @@ grunt.registerTask( "build-member-list", function() { }); }); -grunt.registerTask( "build", [ "build-pages", "build-resources", "build-member-list" ] ); -grunt.registerTask( "build-wordpress", [ "check-modules", "clean", "build" ] ); +grunt.registerTask( "build", [ "build-posts", "build-resources", "build-member-list" ] ); }; diff --git a/package.json b/package.json index 2236213..c1d43fd 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,6 @@ "dependencies": { "async": "0.9.0", "grunt": "0.4.5", - "grunt-check-modules": "0.2.0", - "grunt-jquery-content": "1.0.0", - "rimraf": "2.2.8" + "grunt-jquery-content": "2.0.0" } } From 403a2b0adcd996bba607cfbc9b8b6d22d04984aa Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Thu, 18 Dec 2014 10:35:59 -0500 Subject: [PATCH 088/382] Update to jQuery 1.11.2 and 2.1.3 --- pages/download.md | 14 +++++++------- pages/index.html | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/download.md b/pages/download.md index be3e14b..4227e50 100644 --- a/pages/download.md +++ b/pages/download.md @@ -23,11 +23,11 @@ Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -Download the compressed, production jQuery 1.11.1 +Download the compressed, production jQuery 1.11.2 -Download the uncompressed, development jQuery 1.11.1 +Download the uncompressed, development jQuery 1.11.2 -Download the map file for jQuery 1.11.1 +Download the map file for jQuery 1.11.2 [jQuery 1.11.1 release notes](http://blog.jquery.com/?p=3467) @@ -39,11 +39,11 @@ Since IE 8 is still relatively common, we recommend using the 1.x version unless are certain no IE 6/7/8 users are visiting the site. Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -Download the compressed, production jQuery 2.1.1 +Download the compressed, production jQuery 2.1.3 -Download the uncompressed, development jQuery 2.1.1 +Download the uncompressed, development jQuery 2.1.3 -Download the map file for jQuery 2.1.1 +Download the map file for jQuery 2.1.3 [jQuery 2.1.1 release notes](http://blog.jquery.com/?p=3467) @@ -89,7 +89,7 @@ if the visitor to your webpage has already downloaded a copy of jQuery from the To use the jQuery CDN, just reference the file directly from `http://code.jquery.com` in the script tag: ``` - + ``` diff --git a/pages/index.html b/pages/index.html index 511ca3c..5e5c5ec 100644 --- a/pages/index.html +++ b/pages/index.html @@ -12,7 +12,7 @@ Download jQuery - v1.11.1 or v2.1.1 + v1.11.2 or v2.1.3
View Source on GitHub → From b25e2441ba837d1139a520f218c195b0980f414d Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Thu, 18 Dec 2014 10:44:13 -0500 Subject: [PATCH 089/382] 2.1.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c1d43fd..3d71af6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.0", + "version": "2.1.1", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From 444fb1d9d1b1a6ff768b74014de321987110932a Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Thu, 18 Dec 2014 10:44:57 -0500 Subject: [PATCH 090/382] 2.1.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3d71af6..8f332d0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.1", + "version": "2.1.2", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From d53bca3efba5f6cd19c14eaf8fa3be9425b36e4b Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Thu, 18 Dec 2014 10:50:01 -0500 Subject: [PATCH 091/382] Update blog post links on the download page to 2.1.3 and 1.11.2 --- pages/download.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pages/download.md b/pages/download.md index 4227e50..aa4a53d 100644 --- a/pages/download.md +++ b/pages/download.md @@ -29,7 +29,8 @@ for more information. Download the map file for jQuery 1.11.2 -[jQuery 1.11.1 release notes](http://blog.jquery.com/?p=3467) +[jQuery 1.11.2 release +notes](http://blog.jquery.com/2014/12/18/jquery-1-11-2-and-2-1-3-released-safari-fail-safe-edition/) ### jQuery 2.x @@ -45,7 +46,8 @@ Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0 Download the map file for jQuery 2.1.3 -[jQuery 2.1.1 release notes](http://blog.jquery.com/?p=3467) +[jQuery 2.1.3 release +notes](http://blog.jquery.com/2014/12/18/jquery-1-11-2-and-2-1-3-released-safari-fail-safe-edition/) ## Downloading jQuery using Bower jQuery is registered as a package with [Bower](http://bower.io). You can install the latest version of jQuery with the command: @@ -56,7 +58,7 @@ This will install jQuery to Bower's install directory, the default being `bower_ The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on it's own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: ``` -bower install http://code.jquery.com/jquery-2.1.0.min.js +bower install http://code.jquery.com/jquery-2.1.3.min.js ``` ## jQuery Migrate Plugin From a04a069b42c5ba948508afdd428c2c5c1c8b5fab Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Thu, 18 Dec 2014 10:51:49 -0500 Subject: [PATCH 092/382] 2.1.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8f332d0..da68db4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.2", + "version": "2.1.3", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From 97a429a7984dbf6434a23ebd22b1e0cdf3a91ae7 Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Mon, 19 Jan 2015 11:32:39 -0600 Subject: [PATCH 093/382] 2.1.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index da68db4..a6225b5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.3", + "version": "2.1.4", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From d31ae36f5b962595ee8542a23a3d01b76eb7961e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Thu, 18 Dec 2014 16:57:33 +0100 Subject: [PATCH 094/382] Download: Update the "jQuery Pre-Release Builds" section We now have `compat` & `master` branches and we no longer support IE<8. Also, links to the pre-release files have changed. --- pages/download.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/download.md b/pages/download.md index aa4a53d..2bbcada 100644 --- a/pages/download.md +++ b/pages/download.md @@ -76,11 +76,11 @@ Be sure to test web pages that use jQuery in all the browsers you want to suppor ## jQuery Pre-Release Builds -The jQuery team is constantly working to improve the code. Each commit to the Github repo generates a work-in-progress version of the code that we update on the jQuery CDN. _These versions are sometimes unstable and not suitable for production sites._ We recommend they be used to determine whether a bug has already been fixed when reporting bugs against released versions, or to see if new bugs have been introduced. There are two versions, one for the 1.x branch (supports IE 6/7/8) and one for the 2.x branch (not for use with old IE). +The jQuery team is constantly working to improve the code. Each commit to the Github repo generates a work-in-progress version of the code that we update on the jQuery CDN. _These versions are sometimes unstable and not suitable for production sites._ We recommend they be used to determine whether a bug has already been fixed when reporting bugs against released versions, or to see if new bugs have been introduced. There are two versions, one for the `compat` branch (supports IE 8) and one for the `master` branch (not for use with old IE). -Download the work-in-progress jQuery **1.x** build +Download the work-in-progress jQuery Compat build -Download the work-in-progress jQuery **2.x** build +Download the work-in-progress jQuery build ## Using jQuery with a CDN From 1b73245c3e44da2673acf737a4da159efa3a1a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Sun, 25 Jan 2015 17:16:23 +0100 Subject: [PATCH 095/382] 2.1.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a6225b5..cca4c11 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.4", + "version": "2.1.5", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From 6e114ac969a1d4e4496aec9da62bdd9877029c70 Mon Sep 17 00:00:00 2001 From: Eric Lee Carraway Date: Tue, 7 Apr 2015 17:55:42 -0500 Subject: [PATCH 096/382] Download: Fix two typos Closes gh-96 --- pages/download.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/download.md b/pages/download.md index 2bbcada..5285603 100644 --- a/pages/download.md +++ b/pages/download.md @@ -56,7 +56,7 @@ bower install jquery ``` This will install jQuery to Bower's install directory, the default being `bower_components`. Within `bower_components/jquery/dist/` you will find an uncompressed release, a compressed release, and a map file. -The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on it's own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: +The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on its own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: ``` bower install http://code.jquery.com/jquery-2.1.3.min.js ``` @@ -64,7 +64,7 @@ bower install http://code.jquery.com/jquery-2.1.3.min.js ## jQuery Migrate Plugin We have created the [jQuery Migrate plugin](http://github.com/jquery/jquery-migrate/#readme) -to simplify the transition from older versions of jQuery. The plugin restores deprecated features and behaviors so that older code will still run properly on jQuery 1.9 and later. Use the _uncompressed development_ version to diagnose compatiblity issues, it will generate warnings on the console that you can use to identify and fix problems. Use the _compressed production_ version to simply fix compatibility issues without generating console warnings. +to simplify the transition from older versions of jQuery. The plugin restores deprecated features and behaviors so that older code will still run properly on jQuery 1.9 and later. Use the _uncompressed development_ version to diagnose compatibility issues, it will generate warnings on the console that you can use to identify and fix problems. Use the _compressed production_ version to simply fix compatibility issues without generating console warnings. Download the compressed, production jQuery Migrate 1.2.1 From 6abb0eb66f0e1b04bb0b392ebf7975f1f36a0cf6 Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Fri, 10 Apr 2015 09:41:15 +0200 Subject: [PATCH 097/382] 2.1.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cca4c11..8b73488 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.5", + "version": "2.1.6", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From b073845f11661c3f705476f242d8cdcd55ff1047 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Thu, 30 Apr 2015 13:28:15 -0400 Subject: [PATCH 098/382] Update to jQuery 1.11.3 and 2.1.4 --- pages/download.md | 28 ++++++++++++++-------------- pages/index.html | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pages/download.md b/pages/download.md index 5285603..31739f4 100644 --- a/pages/download.md +++ b/pages/download.md @@ -23,14 +23,14 @@ Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -Download the compressed, production jQuery 1.11.2 +Download the compressed, production jQuery 1.11.3 -Download the uncompressed, development jQuery 1.11.2 +Download the uncompressed, development jQuery 1.11.3 -Download the map file for jQuery 1.11.2 +Download the map file for jQuery 1.11.3 -[jQuery 1.11.2 release -notes](http://blog.jquery.com/2014/12/18/jquery-1-11-2-and-2-1-3-released-safari-fail-safe-edition/) +[jQuery 1.11.3 release +notes](http://blog.jquery.com/2015/04/28/jquery-1-11-3-and-2-1-4-released-ios-fail-safe-edition/) ### jQuery 2.x @@ -40,14 +40,14 @@ Since IE 8 is still relatively common, we recommend using the 1.x version unless are certain no IE 6/7/8 users are visiting the site. Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -Download the compressed, production jQuery 2.1.3 +Download the compressed, production jQuery 2.1.4 -Download the uncompressed, development jQuery 2.1.3 +Download the uncompressed, development jQuery 2.1.4 -Download the map file for jQuery 2.1.3 +Download the map file for jQuery 2.1.4 -[jQuery 2.1.3 release -notes](http://blog.jquery.com/2014/12/18/jquery-1-11-2-and-2-1-3-released-safari-fail-safe-edition/) +[jQuery 2.1.4 release +notes](http://blog.jquery.com/2015/04/28/jquery-1-11-3-and-2-1-4-released-ios-fail-safe-edition/) ## Downloading jQuery using Bower jQuery is registered as a package with [Bower](http://bower.io). You can install the latest version of jQuery with the command: @@ -58,7 +58,7 @@ This will install jQuery to Bower's install directory, the default being `bower_ The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on its own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: ``` -bower install http://code.jquery.com/jquery-2.1.3.min.js +bower install http://code.jquery.com/jquery-2.1.4.min.js ``` ## jQuery Migrate Plugin @@ -72,7 +72,7 @@ to simplify the transition from older versions of jQuery. The plugin restores de ## Cross-Browser Testing with jQuery -Be sure to test web pages that use jQuery in all the browsers you want to support. The [modern.IE](http://modern.ie/) site makes available [virtual machines](http://www.modern.ie/en-us/virtualization-tools#downloads) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). +Be sure to test web pages that use jQuery in all the browsers you want to support. The [modern.IE](http://modern.ie/) site makes available [virtual machines](http://www.modern.ie/en-us/virtualization-tools#downloads) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). ## jQuery Pre-Release Builds @@ -91,7 +91,7 @@ if the visitor to your webpage has already downloaded a copy of jQuery from the To use the jQuery CDN, just reference the file directly from `http://code.jquery.com` in the script tag: ``` - + ``` @@ -143,5 +143,5 @@ The README file for a specific version will have instructions for building that ## Past Releases -All past releases can be found on the [jQuery CDN](http://code.jquery.com). +All past releases can be found on the [jQuery CDN](http://code.jquery.com). diff --git a/pages/index.html b/pages/index.html index 5e5c5ec..d886755 100644 --- a/pages/index.html +++ b/pages/index.html @@ -12,7 +12,7 @@ Download jQuery - v1.11.2 or v2.1.3 + v1.11.3 or v2.1.4
View Source on GitHub → From 5083d59715e812784d101cf1d57bd0c420a19fe6 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Tue, 5 May 2015 09:56:37 -0700 Subject: [PATCH 099/382] 2.1.7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8b73488..c9eec73 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.6", + "version": "2.1.7", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From c5a14bd0f63e7e29eec65da11d55ff452e928f99 Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Fri, 12 Jun 2015 10:20:14 -0500 Subject: [PATCH 100/382] Index: Fix Sizzle link to always use http Sizzle does not have a certificate so when the link goes to https://sizzlejs.com it is broken. --- pages/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.html b/pages/index.html index d886755..1a1059d 100644 --- a/pages/index.html +++ b/pages/index.html @@ -74,7 +74,7 @@

Other jQuery Foundation Projects

From ab628888978a7fea664d78095290ec690182d391 Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Fri, 19 Jun 2015 12:09:42 -0500 Subject: [PATCH 101/382] Build: Replace founding with diamond members in build-member-list task --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index c7ae740..b1c7a87 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -48,7 +48,7 @@ grunt.registerTask( "build-member-list", function() { } async.parallel({ - founding: getMembers.bind( null, "founding" ), + founding: getMembers.bind( null, "diamond" ), platinum: getMembers.bind( null, "platinum" ), gold: getMembers.bind( null, "gold" ) }, function( error, members ) { From 304ab1bb679134234f0a538d891c314faa4383c3 Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Fri, 19 Jun 2015 12:11:45 -0500 Subject: [PATCH 102/382] 2.1.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c9eec73..b87092d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.7", + "version": "2.1.8", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From a0330617043229879b300e1bf850773967cd149c Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Fri, 19 Jun 2015 13:30:03 -0500 Subject: [PATCH 103/382] Build: Fix key name from founding to diamond --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index b1c7a87..69ba82e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -48,7 +48,7 @@ grunt.registerTask( "build-member-list", function() { } async.parallel({ - founding: getMembers.bind( null, "diamond" ), + diamond: getMembers.bind( null, "diamond" ), platinum: getMembers.bind( null, "platinum" ), gold: getMembers.bind( null, "gold" ) }, function( error, members ) { @@ -56,7 +56,7 @@ grunt.registerTask( "build-member-list", function() { return done( error ); } - var corporateMembers = members.founding + var corporateMembers = members.diamond .concat( members.platinum ) .concat( members.gold ) .filter(function( member ) { From c11c70ec7c62697943b842e700acb6899aec63eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Fri, 17 Jul 2015 21:28:14 +0200 Subject: [PATCH 104/382] Browser support: Fix spacing --- pages/browser-support.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index e3cdeb6..87df281 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -41,7 +41,7 @@

Current Active Support


Unsupported Browsers

-

While jQuery might run without major issues in older browser versions, we do not actively test jQuery in them and generally do not fix bugs that may appear in them.

+

While jQuery might run without major issues in older browser versions, we do not actively test jQuery in them and generally do not fix bugs that may appear in them.

Similarly, jQuery does not fix bugs in pre-release versions of browsers, such as beta or dev releases. If you find a bug with jQuery in a pre-release of a browser, you should report the bug to the browser vendor.

@@ -50,7 +50,7 @@

Unsupported Browsers

About Browser Support

jQuery is constantly tested with all of its supported browsers via unit tests. However, a web page using jQuery may not work in the same set of browsers if its own code takes advantage of (or falls prey to) browser-specific behaviors. Testing is essential to fully support a browser. The modern.IE site makes available virtual machines for testing many different versions of Internet Explorer. Older versions of other browsers can be found at oldversion.com.

-

Only the most current version of jQuery is tested and updated to fix bugs or add features. Users of older versions that find a bug should upgrade to the latest released version to determine if the bug has already been fixed. The jQuery Migrate plugin may be helpful in identifying and fixing problems during a version upgrade.

+

Only the most current version of jQuery is tested and updated to fix bugs or add features. Users of older versions that find a bug should upgrade to the latest released version to determine if the bug has already been fixed. The jQuery Migrate plugin may be helpful in identifying and fixing problems during a version upgrade.


From f7de80eec727e620fa209f7c12cab7fa06624a34 Mon Sep 17 00:00:00 2001 From: Corey Frang Date: Tue, 20 Oct 2015 16:23:38 -0400 Subject: [PATCH 105/382] Empty commit: testing full hook cycle From 1734a3a45e396c5ac7e7bf566be5678dbe4e04ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Mon, 14 Dec 2015 19:33:49 +0100 Subject: [PATCH 106/382] Browser support: Add Edge, merge Firefox & Chrome columns Fixes #115 --- pages/browser-support.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index 87df281..bdfaeb6 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -9,8 +9,8 @@

Current Active Support

Internet Explorer - Chrome - Firefox + Chrome, Firefox + Edge Safari Opera iOS @@ -22,7 +22,7 @@

Current Active Support

jQuery 1.x 6+ (Current - 1) or Current - (Current - 1) or Current + Current 5.1+ 12.1x, (Current - 1) or Current 6.1+ @@ -37,6 +37,7 @@

Current Active Support

Any problem with jQuery in the above browsers should be reported as a bug in jQuery.

(Current - 1) or Current denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions.

+

Current denotes that we support only the latest stable version of the browser.

12.1x, (Current - 1) or Current denotes that we support Opera 12.1x as well as last 2 versions of Opera. For example, if the current Opera version is 20.x, we support Opera 12.1x, 19.x and 20.x but not Opera 15.x through 18.x.


From a5e9fd771026b7b6c05d24e3e5e61b3edefdb038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Mon, 14 Dec 2015 19:35:09 +0100 Subject: [PATCH 107/382] 2.1.9 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b87092d..c52cdd1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.8", + "version": "2.1.9", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From 0f08de7f7a28fb0b752227b66ecbf4f0c1b2ed8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 17 Dec 2015 13:25:10 -0500 Subject: [PATCH 108/382] Build: Upgrade to grunt-jquery-content 3.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c52cdd1..574fba4 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,6 @@ "dependencies": { "async": "0.9.0", "grunt": "0.4.5", - "grunt-jquery-content": "2.0.0" + "grunt-jquery-content": "3.0.0" } } From d8661731992bca007f8612fc6c83f27881f1ad38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 17 Dec 2015 13:25:22 -0500 Subject: [PATCH 109/382] 2.1.10 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 574fba4..fa4d373 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.9", + "version": "2.1.10", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From 9b935cf8be7b7eb5d524c47990d166e5a3c4362b Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Fri, 8 Jan 2016 17:20:14 -0500 Subject: [PATCH 110/382] Update to jQuery 1.12.0 and 2.2.0 --- pages/download.md | 24 ++++++++++++------------ pages/index.html | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/pages/download.md b/pages/download.md index 31739f4..06f1dcf 100644 --- a/pages/download.md +++ b/pages/download.md @@ -23,14 +23,14 @@ Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -Download the compressed, production jQuery 1.11.3 +Download the compressed, production jQuery 1.12.0 -Download the uncompressed, development jQuery 1.11.3 +Download the uncompressed, development jQuery 1.12.0 -Download the map file for jQuery 1.11.3 +Download the map file for jQuery 1.12.0 -[jQuery 1.11.3 release -notes](http://blog.jquery.com/2015/04/28/jquery-1-11-3-and-2-1-4-released-ios-fail-safe-edition/) +[jQuery 1.12.0 release +notes](http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/) ### jQuery 2.x @@ -40,14 +40,14 @@ Since IE 8 is still relatively common, we recommend using the 1.x version unless are certain no IE 6/7/8 users are visiting the site. Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -Download the compressed, production jQuery 2.1.4 +Download the compressed, production jQuery 2.2.0 -Download the uncompressed, development jQuery 2.1.4 +Download the uncompressed, development jQuery 2.2.0 -Download the map file for jQuery 2.1.4 +Download the map file for jQuery 2.2.0 -[jQuery 2.1.4 release -notes](http://blog.jquery.com/2015/04/28/jquery-1-11-3-and-2-1-4-released-ios-fail-safe-edition/) +[jQuery 2.2.0 release +notes](http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/) ## Downloading jQuery using Bower jQuery is registered as a package with [Bower](http://bower.io). You can install the latest version of jQuery with the command: @@ -58,7 +58,7 @@ This will install jQuery to Bower's install directory, the default being `bower_ The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on its own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: ``` -bower install http://code.jquery.com/jquery-2.1.4.min.js +bower install http://code.jquery.com/jquery-2.2.0.min.js ``` ## jQuery Migrate Plugin @@ -91,7 +91,7 @@ if the visitor to your webpage has already downloaded a copy of jQuery from the To use the jQuery CDN, just reference the file directly from `http://code.jquery.com` in the script tag: ``` - + ``` diff --git a/pages/index.html b/pages/index.html index 1a1059d..c08dbcb 100644 --- a/pages/index.html +++ b/pages/index.html @@ -12,7 +12,7 @@ Download jQuery - v1.11.3 or v2.1.4 + v1.12.0 or v2.2.0
View Source on GitHub → From c0bd2393b773a05bcf731cb8b6f992a34c906e84 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Fri, 8 Jan 2016 17:20:19 -0500 Subject: [PATCH 111/382] 2.1.11 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fa4d373..e4b325f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.10", + "version": "2.1.11", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From 0003d689f4369673a6ea5394259388b36b1f2bca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Wed, 10 Feb 2016 13:07:25 +0100 Subject: [PATCH 112/382] Browser support: We're now testing on latest 2 Edge versions --- pages/browser-support.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pages/browser-support.html b/pages/browser-support.html index bdfaeb6..7d50e39 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -9,8 +9,7 @@

Current Active Support

Internet Explorer - Chrome, Firefox - Edge + Chrome, Edge, Firefox Safari Opera iOS @@ -22,7 +21,6 @@

Current Active Support

jQuery 1.x 6+ (Current - 1) or Current - Current 5.1+ 12.1x, (Current - 1) or Current 6.1+ @@ -37,7 +35,6 @@

Current Active Support

Any problem with jQuery in the above browsers should be reported as a bug in jQuery.

(Current - 1) or Current denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions.

-

Current denotes that we support only the latest stable version of the browser.

12.1x, (Current - 1) or Current denotes that we support Opera 12.1x as well as last 2 versions of Opera. For example, if the current Opera version is 20.x, we support Opera 12.1x, 19.x and 20.x but not Opera 15.x through 18.x.


From df25efa0ce4fc12296806a31f2f98b526852cfe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Wed, 10 Feb 2016 13:07:48 +0100 Subject: [PATCH 113/382] 2.1.12 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e4b325f..7dde126 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.11", + "version": "2.1.12", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From b02fce80e9b7423056d17b572f584f20869d5793 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Mon, 22 Feb 2016 14:34:30 -0500 Subject: [PATCH 114/382] Update to jQuery 1.12.0 and 2.2.0 --- pages/download.md | 22 +++++++++++----------- pages/index.html | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pages/download.md b/pages/download.md index 06f1dcf..bf085a9 100644 --- a/pages/download.md +++ b/pages/download.md @@ -23,14 +23,14 @@ Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -Download the compressed, production jQuery 1.12.0 +Download the compressed, production jQuery 1.12.1 -Download the uncompressed, development jQuery 1.12.0 +Download the uncompressed, development jQuery 1.12.1 -Download the map file for jQuery 1.12.0 +Download the map file for jQuery 1.12.1 -[jQuery 1.12.0 release -notes](http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/) +[jQuery 1.12.1 release +notes](http://blog.jquery.com/2016/02/22/jquery-1-12-1-and-2-2-1-released/) ### jQuery 2.x @@ -40,14 +40,14 @@ Since IE 8 is still relatively common, we recommend using the 1.x version unless are certain no IE 6/7/8 users are visiting the site. Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -Download the compressed, production jQuery 2.2.0 +Download the compressed, production jQuery 2.2.1 -Download the uncompressed, development jQuery 2.2.0 +Download the uncompressed, development jQuery 2.2.1 -Download the map file for jQuery 2.2.0 +Download the map file for jQuery 2.2.1 -[jQuery 2.2.0 release -notes](http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/) +[jQuery 2.2.1 release +notes](http://blog.jquery.com/2016/02/22/jquery-1-12-1-and-2-2-1-released/) ## Downloading jQuery using Bower jQuery is registered as a package with [Bower](http://bower.io). You can install the latest version of jQuery with the command: @@ -58,7 +58,7 @@ This will install jQuery to Bower's install directory, the default being `bower_ The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on its own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: ``` -bower install http://code.jquery.com/jquery-2.2.0.min.js +bower install http://code.jquery.com/jquery-2.2.1.min.js ``` ## jQuery Migrate Plugin diff --git a/pages/index.html b/pages/index.html index c08dbcb..7015363 100644 --- a/pages/index.html +++ b/pages/index.html @@ -12,7 +12,7 @@ Download jQuery - v1.12.0 or v2.2.0 + v1.12.1 or v2.2.1
View Source on GitHub → From 3e976623941794ecfc6ec42739df960c570a1da9 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Mon, 22 Feb 2016 14:34:41 -0500 Subject: [PATCH 115/382] 2.1.13 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7dde126..6964359 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.12", + "version": "2.1.13", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From f687d94a2f041eadf86d95b4ab017f286fc1e0b1 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Thu, 17 Mar 2016 14:11:51 -0400 Subject: [PATCH 116/382] Update to jQuery 1.12.2 and 2.2.2 --- pages/download.md | 22 +++++++++++----------- pages/index.html | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pages/download.md b/pages/download.md index bf085a9..5e9901d 100644 --- a/pages/download.md +++ b/pages/download.md @@ -23,14 +23,14 @@ Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -Download the compressed, production jQuery 1.12.1 +Download the compressed, production jQuery 1.12.2 -Download the uncompressed, development jQuery 1.12.1 +Download the uncompressed, development jQuery 1.12.2 -Download the map file for jQuery 1.12.1 +Download the map file for jQuery 1.12.2 -[jQuery 1.12.1 release -notes](http://blog.jquery.com/2016/02/22/jquery-1-12-1-and-2-2-1-released/) +[jQuery 1.12.2 release +notes](http://blog.jquery.com/2016/03/17/jquery-1-12-2-and-2-2-2-released/) ### jQuery 2.x @@ -40,14 +40,14 @@ Since IE 8 is still relatively common, we recommend using the 1.x version unless are certain no IE 6/7/8 users are visiting the site. Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -Download the compressed, production jQuery 2.2.1 +Download the compressed, production jQuery 2.2.2 -Download the uncompressed, development jQuery 2.2.1 +Download the uncompressed, development jQuery 2.2.2 -Download the map file for jQuery 2.2.1 +Download the map file for jQuery 2.2.2 -[jQuery 2.2.1 release -notes](http://blog.jquery.com/2016/02/22/jquery-1-12-1-and-2-2-1-released/) +[jQuery 2.2.2 release +notes](http://blog.jquery.com/2016/03/17/jquery-1-12-2-and-2-2-2-released/) ## Downloading jQuery using Bower jQuery is registered as a package with [Bower](http://bower.io). You can install the latest version of jQuery with the command: @@ -58,7 +58,7 @@ This will install jQuery to Bower's install directory, the default being `bower_ The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on its own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: ``` -bower install http://code.jquery.com/jquery-2.2.1.min.js +bower install http://code.jquery.com/jquery-2.2.2.min.js ``` ## jQuery Migrate Plugin diff --git a/pages/index.html b/pages/index.html index 7015363..e2af224 100644 --- a/pages/index.html +++ b/pages/index.html @@ -12,7 +12,7 @@ Download jQuery - v1.12.1 or v2.2.1 + v1.12.2 or v2.2.2
View Source on GitHub → From bb5b0c8641a6e4e1d719991ee7cd2c2b18ab6ec5 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Thu, 17 Mar 2016 14:11:57 -0400 Subject: [PATCH 117/382] 2.1.14 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6964359..73a802a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.13", + "version": "2.1.14", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From e37ea3fa2fce05d0c9974150bbf45adad45d68ff Mon Sep 17 00:00:00 2001 From: Alan Yee Date: Fri, 18 Dec 2015 17:57:36 -0800 Subject: [PATCH 118/382] Download: Use HTTPS URLs Follow the recent guidelines to use HTTPS URLs instead of HTTP or protocol-relative ones. Fixes #86 Closes #116 --- pages/download.md | 70 +++++++++++++++++++++++------------------------ 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/pages/download.md b/pages/download.md index 5e9901d..34c3f48 100644 --- a/pages/download.md +++ b/pages/download.md @@ -10,7 +10,7 @@ Compressed and uncompressed copies of jQuery files are available. The uncompressed file is best used during development or debugging; the compressed file saves bandwidth and improves performance in production. You can also download a [sourcemap file](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) for use when debugging with a compressed file. The map file is _not_ required for users to run jQuery, it just improves the developer's debugger experience. -As of jQuery 1.11.0/2.1.0 the `//# sourceMappingURL` comment is [not included](http://blog.jquery.com/?p=3344) in the compressed file. +As of jQuery 1.11.0/2.1.0 the `//# sourceMappingURL` comment is [not included](https://blog.jquery.com/2014/01/24/jquery-1-11-and-2-1-released/) in the compressed file. To locally download these files, right-click the link and select "Save as..." from the menu. @@ -19,35 +19,35 @@ To locally download these files, right-click the link and select "Save as..." fr The jQuery 1.x line had major changes as of jQuery 1.9.0. We _strongly_ recommend that you also use the jQuery Migrate plugin if you are upgrading from pre-1.9 versions of jQuery or need to use plugins that haven't yet been updated. -Read the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) -and the [jQuery 1.9 release blog post](http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) +Read the [jQuery 1.9 Upgrade Guide](https://jquery.com/upgrade-guide/1.9/) +and the [jQuery 1.9 release blog post](https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/) for more information. -Download the compressed, production jQuery 1.12.2 +Download the compressed, production jQuery 1.12.2 -Download the uncompressed, development jQuery 1.12.2 +Download the uncompressed, development jQuery 1.12.2 -Download the map file for jQuery 1.12.2 +Download the map file for jQuery 1.12.2 [jQuery 1.12.2 release -notes](http://blog.jquery.com/2016/03/17/jquery-1-12-2-and-2-2-2-released/) +notes](https://blog.jquery.com/2016/03/17/jquery-1-12-2-and-2-2-2-released/) ### jQuery 2.x jQuery 2.x has the same API as jQuery 1.x, but _does not support Internet Explorer 6, 7, or 8_. -All the notes in the [jQuery 1.9 Upgrade Guide](http://jquery.com/upgrade-guide/1.9/) apply here as well. +All the notes in the [jQuery 1.9 Upgrade Guide](https://jquery.com/upgrade-guide/1.9/) apply here as well. Since IE 8 is still relatively common, we recommend using the 1.x version unless you are certain no IE 6/7/8 users are visiting the site. -Please read the [2.0 release notes](http://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. +Please read the [2.0 release notes](https://blog.jquery.com/2013/04/18/jquery-2-0-released/) carefully. -Download the compressed, production jQuery 2.2.2 +Download the compressed, production jQuery 2.2.2 -Download the uncompressed, development jQuery 2.2.2 +Download the uncompressed, development jQuery 2.2.2 -Download the map file for jQuery 2.2.2 +Download the map file for jQuery 2.2.2 [jQuery 2.2.2 release -notes](http://blog.jquery.com/2016/03/17/jquery-1-12-2-and-2-2-2-released/) +notes](https://blog.jquery.com/2016/03/17/jquery-1-12-2-and-2-2-2-released/) ## Downloading jQuery using Bower jQuery is registered as a package with [Bower](http://bower.io). You can install the latest version of jQuery with the command: @@ -58,65 +58,65 @@ This will install jQuery to Bower's install directory, the default being `bower_ The jQuery Bower package contains additional files besides the default distribution. In most cases you can ignore these files, however if you wish to download the default release on its own you can use Bower to install jQuery from one of the above urls instead of the registered package. For example, if you wish to install just the compressed jQuery 2.1.0, you can install just that file with the following command: ``` -bower install http://code.jquery.com/jquery-2.2.2.min.js +bower install https://code.jquery.com/jquery-2.2.2.min.js ``` ## jQuery Migrate Plugin -We have created the [jQuery Migrate plugin](http://github.com/jquery/jquery-migrate/#readme) +We have created the [jQuery Migrate plugin](https://github.com/jquery/jquery-migrate/#readme) to simplify the transition from older versions of jQuery. The plugin restores deprecated features and behaviors so that older code will still run properly on jQuery 1.9 and later. Use the _uncompressed development_ version to diagnose compatibility issues, it will generate warnings on the console that you can use to identify and fix problems. Use the _compressed production_ version to simply fix compatibility issues without generating console warnings. -Download the compressed, production jQuery Migrate 1.2.1 +Download the compressed, production jQuery Migrate 1.2.1 -Download the uncompressed, development jQuery Migrate 1.2.1 +Download the uncompressed, development jQuery Migrate 1.2.1 ## Cross-Browser Testing with jQuery -Be sure to test web pages that use jQuery in all the browsers you want to support. The [modern.IE](http://modern.ie/) site makes available [virtual machines](http://www.modern.ie/en-us/virtualization-tools#downloads) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). +Be sure to test web pages that use jQuery in all the browsers you want to support. The [modern.IE](https://modern.ie/) site makes available [virtual machines](https://modern.ie/en-us/virtualization-tools#downloads) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). ## jQuery Pre-Release Builds The jQuery team is constantly working to improve the code. Each commit to the Github repo generates a work-in-progress version of the code that we update on the jQuery CDN. _These versions are sometimes unstable and not suitable for production sites._ We recommend they be used to determine whether a bug has already been fixed when reporting bugs against released versions, or to see if new bugs have been introduced. There are two versions, one for the `compat` branch (supports IE 8) and one for the `master` branch (not for use with old IE). -Download the work-in-progress jQuery Compat build +Download the work-in-progress jQuery Compat build -Download the work-in-progress jQuery build +Download the work-in-progress jQuery build ## Using jQuery with a CDN -[CDNs](http://en.wikipedia.org/wiki/Content_delivery_network) can offer a performance benefit by hosting jQuery on servers spread across the globe. This also offers an advantage that +[CDNs](https://en.wikipedia.org/wiki/Content_delivery_network) can offer a performance benefit by hosting jQuery on servers spread across the globe. This also offers an advantage that if the visitor to your webpage has already downloaded a copy of jQuery from the same CDN, it won't have to be re-downloaded. -### jQuery's CDN provided by [MaxCDN](http://www.maxcdn.com) +### jQuery's CDN provided by [MaxCDN](https://www.maxcdn.com) -To use the jQuery CDN, just reference the file directly from `http://code.jquery.com` in the script tag: +To use the jQuery CDN, just reference the file directly from `https://code.jquery.com` in the script tag: ``` - - + + ``` -Starting with jQuery 1.9, [sourcemap files](http://blog.jquery.com/2013/01/09/jquery-1-9-rc1-and-migrate-rc1-released/#sourcemaps) are available on the jQuery CDN as well. If compressed files are included directly from the CDN as shown above, sourcemap-aware browsers such as Google Chrome will use them when you enable sourcemap support. +Starting with jQuery 1.9, [sourcemap files](https://blog.jquery.com/2013/01/09/jquery-1-9-rc1-and-migrate-rc1-released/#sourcemaps) are available on the jQuery CDN as well. If compressed files are included directly from the CDN as shown above, sourcemap-aware browsers such as Google Chrome will use them when you enable sourcemap support. -To see all available files and versions, visit [http://code.jquery.com](http://code.jquery.com) +To see all available files and versions, visit [https://code.jquery.com](https://code.jquery.com) ### Other CDNs -The following CDNs also host compressed and uncompressed versions of jQuery releases. Starting with jQuery 1.9 they may also host [sourcemap files](http://blog.jquery.com/2013/01/09/jquery-1-9-rc1-and-migrate-rc1-released/#sourcemaps); check the site's documentation. +The following CDNs also host compressed and uncompressed versions of jQuery releases. Starting with jQuery 1.9 they may also host [sourcemap files](https://blog.jquery.com/2013/01/09/jquery-1-9-rc1-and-migrate-rc1-released/#sourcemaps); check the site's documentation. **Note that there may be delays between a jQuery release and its availability there. Please be patient, they receive the files at the same time the blog post is made public. Beta and release candidates are not hosted by these CDNs.** * [Google CDN](https://developers.google.com/speed/libraries/devguide#jquery) -* [Microsoft CDN](http://www.asp.net/ajaxlibrary/cdn.ashx#jQuery_Releases_on_the_CDN_0) -* [CDNJS CDN](http://cdnjs.com/libraries/jquery/) -* [jsDelivr CDN](http://www.jsdelivr.com/#!jquery) +* [Microsoft CDN](https://www.asp.net/ajaxlibrary/cdn.ashx#jQuery_Releases_on_the_CDN_0) +* [CDNJS CDN](https://cdnjs.com/libraries/jquery/) +* [jsDelivr CDN](https://www.jsdelivr.com/#!jquery) ## About the Code -**jQuery is provided under the MIT license.** +**jQuery is provided under the MIT license.** -The code is hosted and developed in the [jQuery GitHub repository](http://github.com/jquery/jquery). If you've spotted some areas of code that could be improved, please feel free to discuss it on the [Developing jQuery Core Forum](https://forum.jquery.com/developing-jquery-core). If you'd like to participate in developing jQuery, peruse our [contributor site](http://contribute.jquery.org) for more information. +The code is hosted and developed in the [jQuery GitHub repository](https://github.com/jquery/jquery). If you've spotted some areas of code that could be improved, please feel free to discuss it on the [Developing jQuery Core Forum](https://forum.jquery.com/developing-jquery-core). If you'd like to participate in developing jQuery, peruse our [contributor site](https://contribute.jquery.org) for more information. -To find and download plugins developed by jQuery contributors, please visit the Plugins site. Plugin authors are responsible for maintenance of their plugins. Feedback on plugins should be directed to the plugin author, not the jQuery team. +To find and download plugins developed by jQuery contributors, please visit the Plugins site. Plugin authors are responsible for maintenance of their plugins. Feedback on plugins should be directed to the plugin author, not the jQuery team. ### Build from Git @@ -143,5 +143,5 @@ The README file for a specific version will have instructions for building that ## Past Releases -All past releases can be found on the [jQuery CDN](http://code.jquery.com). +All past releases can be found on the [jQuery CDN](https://code.jquery.com). From d2ccd8545c4a3df974fba64dd41ac26b7a740e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Wed, 30 Mar 2016 11:45:22 +0200 Subject: [PATCH 119/382] Download: Update a couple of URLs The old URLs were redirecting to the new ones but it's always best to link directly to the final destination. --- pages/download.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/download.md b/pages/download.md index 34c3f48..08664ab 100644 --- a/pages/download.md +++ b/pages/download.md @@ -72,7 +72,7 @@ to simplify the transition from older versions of jQuery. The plugin restores de ## Cross-Browser Testing with jQuery -Be sure to test web pages that use jQuery in all the browsers you want to support. The [modern.IE](https://modern.ie/) site makes available [virtual machines](https://modern.ie/en-us/virtualization-tools#downloads) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). +Be sure to test web pages that use jQuery in all the browsers you want to support. The [Microsoft Developer Resources](https://developer.microsoft.com/en-us/microsoft-edge/) site makes available [virtual machines](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/) for testing many different versions of Internet Explorer. Older versions of other browsers can be found at [oldversion.com](http://oldversion.com/). ## jQuery Pre-Release Builds @@ -106,7 +106,7 @@ The following CDNs also host compressed and uncompressed versions of jQuery rele **Note that there may be delays between a jQuery release and its availability there. Please be patient, they receive the files at the same time the blog post is made public. Beta and release candidates are not hosted by these CDNs.** * [Google CDN](https://developers.google.com/speed/libraries/devguide#jquery) -* [Microsoft CDN](https://www.asp.net/ajaxlibrary/cdn.ashx#jQuery_Releases_on_the_CDN_0) +* [Microsoft CDN](https://www.asp.net/ajax/cdn#jQuery_Releases_on_the_CDN_0) * [CDNJS CDN](https://cdnjs.com/libraries/jquery/) * [jsDelivr CDN](https://www.jsdelivr.com/#!jquery) From d91beb21ef43bff3ce5abeccbf423c8817c28032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Wed, 30 Mar 2016 11:45:48 +0200 Subject: [PATCH 120/382] 2.1.15 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 73a802a..0da0eb5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery.com", "title": "jQuery Homepage", - "version": "2.1.14", + "version": "2.1.15", "homepage": "https://github.com/jquery/jquery.com", "author": { "name": "jQuery Foundation and other contributors" From d256fb071b3c90a7d3b0432906b8ea84f72f81dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Wed, 30 Mar 2016 11:55:50 +0200 Subject: [PATCH 121/382] Misc: Change HTTP & relative-protocol URLs to HTTPS There were more HTTP & relative-protocol links to be changed. Fixes #86 --- CONTRIBUTING.md | 6 +++--- LICENSE.txt | 2 +- README.md | 2 +- pages/browser-support.html | 8 ++++---- pages/index.html | 22 +++++++++++----------- pages/meetups.md | 8 ++++---- pages/upgrade-guide/1.9.md | 10 +++++----- 7 files changed, 29 insertions(+), 29 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e5d31dc..c816381 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,5 @@ -Welcome! Thanks for your interest in contributing to jquery.com. You're **almost** in the right place. More information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](http://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [to our websites](http://contribute.jquery.org/web-sites/). +Welcome! Thanks for your interest in contributing to jquery.com. You're **almost** in the right place. More information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](https://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [to our websites](https://contribute.jquery.org/web-sites/). -You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla). +You may also want to take a look at our [commit & pull request guide](https://contribute.jquery.org/commits-and-pull-requests/) and [style guides](https://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](https://contribute.jquery.org/cla). -You can find us on [IRC](http://irc.jquery.org), specifically in #jquery-content should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/). +You can find us on [IRC](https://irc.jquery.org), specifically in #jquery-content should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](https://contribute.jquery.org/open-source/). diff --git a/LICENSE.txt b/LICENSE.txt index 35fafd6..d65e6bf 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -34,7 +34,7 @@ Copyright and related rights for sample code are waived via CC0. Sample code is defined as all source code displayed within the prose of the documentation. -CC0: http://creativecommons.org/publicdomain/zero/1.0/ +CC0: https://creativecommons.org/publicdomain/zero/1.0/ ==== diff --git a/README.md b/README.md index babbabf..db3ea6e 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ ## Building and Deploying -To build and deploy your changes for previewing in a [`jquery-wp-content`](https://github.com/jquery/jquery-wp-content) instance, follow the [workflow instructions](http://contribute.jquery.org/web-sites/#workflow) from our documentation on [contributing to jQuery Foundation web sites](http://contribute.jquery.org/web-sites/). +To build and deploy your changes for previewing in a [`jquery-wp-content`](https://github.com/jquery/jquery-wp-content) instance, follow the [workflow instructions](https://contribute.jquery.org/web-sites/#workflow) from our documentation on [contributing to jQuery Foundation web sites](https://contribute.jquery.org/web-sites/). diff --git a/pages/browser-support.html b/pages/browser-support.html index 7d50e39..a41d565 100644 --- a/pages/browser-support.html +++ b/pages/browser-support.html @@ -46,19 +46,19 @@

Unsupported Browsers


About Browser Support

-

jQuery is constantly tested with all of its supported browsers via unit tests. However, a web page using jQuery may not work in the same set of browsers if its own code takes advantage of (or falls prey to) browser-specific behaviors. Testing is essential to fully support a browser. The modern.IE site makes available virtual machines for testing many different versions of Internet Explorer. Older versions of other browsers can be found at oldversion.com.

+

jQuery is constantly tested with all of its supported browsers via unit tests. However, a web page using jQuery may not work in the same set of browsers if its own code takes advantage of (or falls prey to) browser-specific behaviors. Testing is essential to fully support a browser. The Microsoft Developer Resources site makes available virtual machines for testing many different versions of Internet Explorer. Older versions of other browsers can be found at oldversion.com.

Only the most current version of jQuery is tested and updated to fix bugs or add features. Users of older versions that find a bug should upgrade to the latest released version to determine if the bug has already been fixed. The jQuery Migrate plugin may be helpful in identifying and fixing problems during a version upgrade.


About CSS Selector Compatibility

-

Regardless of a browser's support of CSS selectors, all selectors listed at api.jquery.com/category/selectors/ will return the correct set of elements when passed as an argument of the jQuery function.

+

Regardless of a browser's support of CSS selectors, all selectors listed at api.jquery.com/category/selectors/ will return the correct set of elements when passed as an argument of the jQuery function.

CSS styles applied with jQuery's .css() method are dependent on the browser's level of support. In general, jQuery does not attempt to overcome the limitations of a browser's style rendering. (One exception is opacity, which jQuery "shims" for older Internet Explorer's alternative implementation.) Furthermore, prior to version 1.8, jQuery does not normalize vendor-prefixed properties.

External References

diff --git a/pages/index.html b/pages/index.html index e2af224..b312ef2 100644 --- a/pages/index.html +++ b/pages/index.html @@ -15,8 +15,8 @@ v1.12.2 or v2.2.2
@@ -63,29 +63,29 @@

Corporate Members

Other jQuery Foundation Projects

- +