JQuery: Difference between revisions
BenStrauss (talk | contribs) Added section on Origin of Name |
→Features: software and components thereof do not take italics |
||
Line 1: | Line 1: | ||
{{Short description|JavaScript software library}} |
|||
{{lowercase title}} |
{{lowercase title}} |
||
{{Use mdy dates|date=September 2021}} |
|||
{{Infobox software |
{{Infobox software |
||
| name = jQuery |
| name = jQuery |
||
| logo = [[File:JQuery logo.svg|220px]] |
| logo = [[File:JQuery logo.svg|220px]] |
||
| author = [[John Resig]] |
| author = [[John Resig]] |
||
| developer = jQuery Team |
| developer = [https://jquery.org/team/ The jQuery Team] |
||
| released = {{ |
| released = {{start date and age|2006|08|26}} |
||
| latest release version = |
| latest release version = 3.7.1 |
||
| latest release date = ({{start date and age|2023|08|28}})<ref>{{Cite web|url=https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/|title=jQuery 3.7.1 Released: Reliable Table Row Dimensions | Official jQuery Blog|date=August 28, 2023}}</ref> |
|||
| latest release date = {{release date|2011|5|12}} |
|||
| latest preview version = |
| latest preview version = 4.0.0-beta.2 |
||
| latest preview date = {{start date and age|2024|07|17}}<ref>{{Cite web|url=https://blog.jquery.com/2024/07/17/second-beta-of-jquery-4-0-0/|title=Second Beta of jQuery 4.0.0 | Official jQuery Blog|date=July 17, 2024}}</ref> |
|||
| latest preview date = |
|||
| programming language = [[JavaScript]] |
| programming language = [[JavaScript]] |
||
| |
| platform = See {{Section link||Browser support}} |
||
| genre = [[ |
| genre = [[JavaScript library]] |
||
| license = |
| license = [[MIT License|MIT]] |
||
| website = |
| website = {{URL|https://jquery.com}} |
||
| size = 27–274 KB<ref>{{Cite web|title=Open-source Libraries and File Sizes - PageCDN|url=https://pagecdn.com/public-cdn/lib-sizes|access-date=2020-07-21| website=pagecdn.com|language=en}}</ref> |
|||
| size = 31 KB zipped / 84 KB (production mode) / 227 KB (development mode) |
|||
}} |
}} |
||
'''jQuery''' is a [[JavaScript library]] designed to simplify [[HTML]] [[Document Object Model|DOM]] tree traversal and manipulation, as well as [[event handling]], [[CSS animations]], and [[Ajax (programming)|Ajax]].<ref name="jquery.com">{{cite web|url=http://jquery.com/|title=jQuery: The write less, do more, JavaScript library|publisher=The jQuery Project|access-date=29 April 2010}}</ref> It is [[free and open source software|free, open-source software]] using the permissive [[MIT License]].<ref name="jqorg-license2">{{cite web|url=https://github.com/jquery/jquery/blob/master/LICENSE.txt|title=jQuery Project License|publisher=jQuery Foundation|access-date=2017-03-11}}</ref> {{as of|August 2022}}, jQuery is used by 77% of the 10 million most popular websites.<ref name=":0">{{cite web |title=Usage of JavaScript libraries for websites |url=https://w3techs.com/technologies/overview/javascript_library/all |url-status=live |archive-url=https://web.archive.org/web/20191115172736/https://w3techs.com/technologies/overview/javascript_library |archive-date=2019-11-15 |access-date=2019-11-15 |website=W3Techs |language=en-US |quote=jQuery (74.1%) is 3.7 times more popular than Bootstrap (19.9%).}}</ref> [[World Wide Web|Web]] analysis indicates that it is the most widely deployed JavaScript library by a large margin, having at least three to four times more usage than any other JavaScript library.<ref name=":0" /><ref name="libscore.com">{{cite web|url=https://libscore.com/#libs|title=Libscore|archive-url=https://web.archive.org/web/20170219042532/https://libscore.com/|archive-date=2017-02-19|access-date=2017-02-11|quote=Top scripts are 1. jQuery (692,981 sites); 2. jQuery UI (193,680 sites); 3. Facebook SDK (175,369 sites); 4. Twitter Bootstrap JS (158,288 sites); 5. Modernizr (155,503 sites).}}</ref> |
|||
jQuery's syntax is designed to make it easier to navigate a document, select [[Document Object Model|DOM]] elements, create [[animation]]s, handle [[event (computing)|event]]s, and develop [[Ajax (programming)|Ajax]] applications. jQuery also provides capabilities for developers to create [[plug-in (computing)|plug-in]]s on top of the JavaScript library. This enables developers to create [[abstraction (computer science)|abstraction]]s for low-level interaction and animation, advanced effects and high-level, theme-able widgets. The modular approach to the jQuery library allows the creation of powerful [[dynamic web page]]s and Web applications. |
|||
'''jQuery''' is a [[cross-browser]] [[JavaScript library]] designed to simplify the [[client-side scripting]] of [[HTML]].<ref name="jquery.com">{{cite web|url=http://jquery.com/|title=jQuery: The write less, do more, JavaScript library|publisher=The jQuery Project|accessdate=29 April 2010}}</ref> It was released in January 2006 at [[BarCamp]] NYC by [[John Resig]]. Used by over 43% of the 10,000 most visited websites, jQuery is the most popular [[JavaScript library]] in use today.<ref>{{cite web |url=http://trends.builtwith.com/javascript/JQuery |title=jQuery Usage Statistics}}</ref><ref>{{cite web |url=http://w3techs.com/technologies/overview/javascript_library/all|title=Usage of JavaScript libraries for websites|publisher=W3Techs|accessdate=2010-07-08}}</ref> |
|||
The set of [[#Features|jQuery core features]]—DOM element selections, traversal, and manipulation—enabled by its ''selector engine'' (named "Sizzle" from v1.3), created a new "programming style", fusing algorithms and DOM data structures. This style influenced the architecture of other [[Comparison of JavaScript-based web frameworks|JavaScript frameworks]] like [[YUI Library|YUI v3]] and [[Dojo Toolkit|Dojo]], later stimulating the creation of the standard ''Selectors API''.<ref>"[https://www.w3.org/TR/selectors-api/#queryselector Selectors API Level 1, W3C Recommendation]" (21 February 2013). This standard turned what was jQuery "helper methods" into JavaScript-native ones, and the wide use of jQuery stimulated the [https://caniuse.com/queryselector fast adoption] of <code>querySelector/querySelectorAll</code> into main Web browsers.</ref> |
|||
jQuery is [[free and open source software|free, open source software]], [[Dual-licensing|dual-licensed]] under the [[MIT License]] and the [[GNU General Public License#Version 2|GNU General Public License, Version 2]].<ref>{{cite web |url=http://docs.jquery.com/License |title=License – JQuery JavaScript Library |accessdate=2009-11-26}}</ref> jQuery's syntax is designed to make it easier to navigate a document, select [[Document Object Model|DOM]] elements, create [[animation]]s, handle [[Event (computing)|events]], and develop [[Ajax (programming)|Ajax applications]]. jQuery also provides capabilities for developers to create [[Plug-in (computing)|plugin]]s on top of the JavaScript library. Using these facilities, developers are able to create [[Abstraction (computer science)|abstractions]] for low-level interaction and animation, advanced effects and high-level, theme-able widgets. This contributes to the creation of powerful and dynamic web pages. |
|||
[[Microsoft]] and [[Nokia]] |
[[Microsoft]] and [[Nokia]] bundle jQuery on their platforms.<ref name="2008-09-28">{{cite web |url=http://jquery.com/blog/2008/09/28/jquery-microsoft-nokia/ |title=jQuery, Microsoft, and Nokia |date=2008-09-28 |last=Resig |first=John |publisher=jQuery |work=jQuery Blog |access-date=2009-01-29 }}</ref> Microsoft includes it with [[Visual Studio]]<ref>{{cite web |url=https://weblogs.asp.net/scottgu/jquery-and-microsoft |title=jQuery and Microsoft |last=Guthrie |first=Scott |work=ScottGu's Blog |date=2008-09-28 |access-date=2019-04-15 }}</ref> for use within Microsoft's [[ASP.NET AJAX]] and [[ASP.NET MVC]] frameworks while Nokia has integrated it into the Web Run-Time widget development platform.<ref>{{cite web|url=http://wiki.forum.nokia.com/index.php/Guarana_UI:_a_jQuery-Based_UI_Library_for_Nokia_WRT|title=Guarana UI: A jQuery Based UI Library for Nokia WRT|work=Forum Nokia|archive-url=https://web.archive.org/web/20110816054350/http://www.developer.nokia.com/Community/Wiki/Guarana_UI:_a_jQuery-Based_UI_Library_for_Nokia_WRT|archive-date=2011-08-16|url-status=dead|access-date=2010-03-30}}</ref> |
||
==Overview== |
|||
jQuery, at its core, is a [[Document Object Model]] (DOM) manipulation library. The DOM is a tree-structure representation of all the elements of a Web page. jQuery simplifies the syntax for finding, selecting, and manipulating these DOM elements. For example, jQuery can be used for finding an element in the document with a certain property (e.g. all elements with the [[HTML element#heading|<code>h1</code>]] tag), changing one or more of its attributes (e.g. <code>color</code>, <code>visibility</code>), or making it respond to an event (e.g. a mouse click). |
|||
jQuery also provides a paradigm for event handling that goes beyond basic DOM element selection and manipulation. The event assignment and the event callback function definition are done in a single step in a single location in the code. jQuery also aims to incorporate other highly used JavaScript functionality (e.g. fade ins and fade outs when hiding elements, animations by manipulating [[Cascading Style Sheets|CSS]] properties). |
|||
The principles of developing with jQuery are: |
|||
* Separation of JavaScript and HTML: The jQuery library provides simple syntax for adding [[Event (computing)|event]] handlers to the [[Document Object Model|DOM]] using JavaScript, rather than adding [[HTML attribute#Event attributes|HTML event attributes]] to call JavaScript functions. Thus, it encourages developers to [[Separation of concerns|completely separate]] JavaScript code from HTML markup. |
|||
* Brevity and clarity: jQuery promotes brevity and clarity with features like "chainable" functions and shorthand function names. |
|||
* Elimination of cross-browser incompatibilities: The JavaScript engines of different browsers differ slightly so JavaScript code that works for one browser may not work for another. Like other JavaScript toolkits, jQuery handles all these cross-browser inconsistencies and provides a consistent interface that works across different browsers. |
|||
* Extensibility: New events, elements, and methods can be easily added and then reused as a plugin. |
|||
==History== |
|||
jQuery was originally created in January 2006 at [[BarCamp]] NYC by [[John Resig]], influenced by Dean Edwards' earlier cssQuery library.<ref>{{cite book | last=York | first=Richard | title=Beginning JavaScript and CSS Development with jQuery | page=28 | publisher=Wiley | isbn=978-0-470-22779-4 | year=2009 | url=https://books.google.com/books?id=L9otyT4crSQC&pg=PA515}}</ref><ref>{{cite web |
|||
| url=https://www.slideshare.net/jeresig/history-of-jquery |
|||
| title=History of jQuery |
|||
| date=2007-10-31 |
|||
| last=Resig|first=John |
|||
| access-date=2019-04-15}}</ref> It is currently maintained by a team of developers led by Timmy Willison (with the jQuery selector engine, Sizzle, being led by Richard Gibson).<ref>{{Cite web|url=https://jquery.org/team/|title=The jQuery Team|website=jquery.com|publisher=JS Foundation|language=en-US|access-date=2019-05-22|quote=Team: Timmy Willison (jQuery Core Lead), Richard Gibson (Sizzle Lead, jQuery Core).}}</ref> |
|||
jQuery was originally licensed under the [[CC BY-SA 2.5]], and [[Software relicensing|relicensed]] to the [[MIT License]] in 2006.<ref>[https://blog.jquery.com/2006/05/27/jquery-under-the-mit-license/ jquery-under-the-mit-license] on jquery.org (2006)</ref> At the end of 2006, it was [[dual-license]]d under [[GPL]] and MIT licenses.<ref>[https://web.archive.org/web/20100301130833/http://jquery.org/license license] on jquery.org (archived 2010)</ref> As this led to some confusion, in 2012 the GPL was dropped and is now only licensed under the MIT license.<ref>{{Cite web |last= |first= |date=2012-09-10 |title=jQuery Licensing Changes |url=https://blog.jquery.com/2012/09/10/jquery-licensing-changes/ |access-date= |website=jQuery Blog |language=en}}</ref> |
|||
=== Popularity === |
|||
* In 2015, jQuery was used on 62.7% of the top 1 million websites (according to BuiltWith), and 17% of all Internet websites.<ref>{{Cite web|url=https://www.maxcdn.com/blog/maxscale-jquery/|title=Handling 15,000 requests per second: The Growth Behind jQuery|date=20 June 2015|website=www.maxcdn.com|publisher=[[MaxCDN]]|language=en-US|access-date=2018-07-02|archive-date=July 2, 2018|archive-url=https://web.archive.org/web/20180702093146/https://www.maxcdn.com/blog/maxscale-jquery/|url-status=dead}}</ref> |
|||
* In 2017, jQuery was used on 69.2% of the top 1 million websites (according to Libscore).<ref name="libscore.com" /> |
|||
* In 2018, jQuery was used on 78% of the top 1 million websites.<ref name=":1">{{Cite web|url=https://trends.builtwith.com/javascript/jQuery|title=jQuery Usage Statistics (Dec 2019)|date=2019-12-31|website=trends.builtwith.com|language=en|url-status=dead|archive-url=https://web.archive.org/web/20200221204800/https://trends.builtwith.com/javascript/jQuery|archive-date=2020-02-21|access-date=2020-02-21}}</ref> |
|||
*In 2019, jQuery was used on 80% of the top 1 million websites (according to BuiltWith),<ref name=":1" /> and 74.1% of the top 10 million (per W3Techs).<ref name=":0" /> |
|||
*In 2021, jQuery was used on 77.8% of the top 10 million websites (according to W3Techs)''.''<ref>{{Cite web|url=https://w3techs.com/technologies/overview/javascript_library|title=Usage Statistics and Market Share of JavaScript Libraries (February 2020)|date=2020-02-21|website=W3Techs|url-status=live|archive-url=https://web.archive.org/web/20200221205251/https://w3techs.com/technologies/overview/javascript_library|archive-date=2020-02-21|access-date=2020-02-21}}</ref> |
|||
==Features== |
==Features== |
||
jQuery |
jQuery includes the following features: |
||
* [[Document Object Model|DOM]] element selections using the |
* [[Document Object Model|DOM]] element selections using the multi-browser open source selector engine Sizzle, a spin-off of the jQuery project<ref>{{cite web |title=jQuery 1.3 and the jQuery Foundation |url=https://blog.jquery.com/2009/01/14/jquery-13-and-the-jquery-foundation/ |last=Resig |first=John |date=2009-01-14 |work=jQuery Blog | access-date=2009-05-04 }}</ref> |
||
* DOM manipulation based on CSS selectors that uses elements' names and attributes, such as id and class, as criteria to select nodes in the DOM |
|||
* DOM traversal and modification (including support for CSS 1-3) |
|||
* Events |
* Events |
||
* [[Cascading Style Sheets|CSS]] manipulation |
|||
* Effects and animations |
* Effects and animations |
||
* [[ |
* [[Ajax (programming)|Ajax]] |
||
* [[Futures and promises|Deferred and Promise]] objects to control asynchronous processing |
|||
* [[JSON]] parsing |
|||
* [[Extensibility]] through plug-ins |
* [[Extensibility]] through plug-ins |
||
* Utilities |
* Utilities, such as [[Feature detection (web development)|feature detection]] |
||
* Compatibility methods that are natively available in modern browsers, but need fallbacks for old browsers, such as <code>jQuery.inArray()</code> and <code>jQuery.each()</code>. |
|||
* Cross-browser support |
|||
*[[Cross-browser]] support |
|||
===Browser support=== |
|||
==Including the library== |
|||
jQuery 3.0 and newer supports "current−1 versions" (meaning the current stable version of the browser and the version that preceded it) of [[Firefox]] (and ESR), [[Google Chrome|Chrome]], [[Safari (web browser)|Safari]], and [[Microsoft Edge|Edge]] as well as [[Internet Explorer]] [[Internet Explorer 9|9]] and newer. On mobile it supports [[iOS]] 7 and newer, and [[Android (operating system)|Android]] 4.0 and newer.<ref>[//jquery.com/browser-support/ Browser Support | jQuery]</ref> |
|||
The jQuery library is a single JavaScript file, containing all of its common DOM, event, effects, and Ajax functions. It can be included within a web page by linking to a local copy, or to one of the many copies available from public servers (such as Google <ref>http://code.google.com/apis/ajaxlibs/documentation/#jquery</ref> or Microsoft [[Content delivery network|CDN]]). |
|||
==Distribution== |
|||
<source lang=html4strict> |
|||
The jQuery library is typically distributed as a single JavaScript file that defines all its interfaces, including DOM, Events, and Ajax functions. It can be included within a Web page by linking to a local copy or by linking to one of the many copies available from public servers. jQuery has a [[content delivery network]] (CDN) hosted by [[MaxCDN]].<ref>{{cite web|url=https://code.jquery.com/|title=jQuery CDN|first=jQuery Foundation -|last=jquery.org}}</ref> Google in Google Hosted Libraries service and Microsoft host the library as well.<ref>{{cite web|url=https://code.google.com/apis/ajaxlibs/documentation/#jquery |title=Google Libraries API - Developer's Guide |access-date=March 11, 2012}}</ref><ref>{{cite web | url=https://docs.microsoft.com/en-us/aspnet/ajax/cdn/overview | title=Microsoft Ajax Content Delivery Network | publisher=Microsoft Corporation | work=ASP.net | access-date=2019-04-15}}</ref> |
|||
<script type="text/javascript" src="jquery.js"></script> |
|||
</source> |
|||
Example of linking a copy of the library locally (from the same server that hosts the Web page): |
|||
The most popular and basic way to introduce a jQuery function is to use the <code lang='jQuery'>.ready()</code> function. |
|||
< |
<syntaxhighlight lang="html"> |
||
<script src="jquery-3.5.1.min.js"></script> |
|||
$(document).ready(function() { |
|||
</syntaxhighlight> |
|||
// jquery goes here |
|||
}); |
|||
</source> |
|||
or the shortcut |
|||
<source lang=html4strict> |
|||
$(function() { |
|||
// jquery goes here |
|||
}); |
|||
</source> |
|||
Example of linking a copy of the library from jQuery's public CDN: |
|||
==Usage styles== |
|||
jQuery has two usage styles: |
|||
* via the <code lang="jQuery">$</code> function, which is a [[Factory method pattern|factory method]] for the jQuery object. These functions, often called ''commands'', are [[method chaining|''chainable'']]; they all return jQuery objects |
|||
* via <code lang="jQuery">$.</code>-prefixed functions. These are ''utility functions'' which do not work on the jQuery object ''per se''. |
|||
<syntaxhighlight lang="html"> |
|||
Typically, access to and manipulation of multiple DOM nodes begins with the <code lang="jQuery">$</code> function being called with a [[CSS]] selector string, which results in a jQuery object referencing matching elements in the [[HTML]] page. This node set can be manipulated by calling instance methods on the jQuery object, or on the nodes themselves. For example: |
|||
<script |
|||
<source lang=javascript> |
|||
src="https://code.jquery.com/jquery-3.5.1.min.js" |
|||
$("div.test").add("p.quote").addClass("blue").slideDown("slow"); |
|||
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" |
|||
</source> |
|||
crossorigin="anonymous"></script> |
|||
This line finds the union of all <code lang="HTML">div</code> tags with class attribute <code lang="HTML">test</code> and all <code lang="HTML">p</code> tags with CSS class attribute <code lang="HTML">quote</code>, adds the class attribute <code lang="HTML">blue</code> to each matched element, and then slides them down with an animation. The <code lang="jQuery">$</code> and <code lang="jQuery">add</code> functions affect the matched set, while the <code lang="jQuery">addClass</code> and <code lang="jQuery">slideDown</code> affect the referenced nodes. |
|||
</syntaxhighlight> |
|||
== Interface == |
|||
The following script automatically checks whether the jQuery file is included. If not, it appends a jquery reference to the head section |
|||
<source lang=javascript> |
|||
if(!(window.jQuery && window.jQuery.fn.jquery == '1.4.4')) { |
|||
var s = document.createElement('script'); |
|||
s.setAttribute('src', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js'); |
|||
s.setAttribute('type', 'text/javascript'); |
|||
document.getElementsByTagName('head')[0].appendChild(s); |
|||
} |
|||
</source> |
|||
===Functions=== |
|||
The methods prefixed with <code lang="jQuery">$.</code> are convenience methods or affect global properties and behaviour. For example, the following is an example of the [[Map (higher-order function)|map function]] called <code lang="jQuery">each</code> in jQuery: |
|||
<source lang=javascript> |
|||
jQuery provides two kinds of [[Subroutine|functions]], [[Method (computer programming)|static utility functions]] and jQuery [[Method (computer programming)|object methods]]. Each has its own usage style. |
|||
$.each([1,2,3], function(){ |
|||
document.write(this + 1); |
|||
Both are accessed through jQuery's main identifier: <code>jQuery</code>. This identifier has an alias named <code>$</code>.<ref>{{Cite web|url=https://api.jquery.com/jQuery/|title=jQuery() {{!}} jQuery API Documentation|last=js.foundation|first=JS Foundation -|website=api.jquery.com|language=en-US|access-date=2018-07-02}}</ref> All functions can be accessed through either of these two names. |
|||
==== jQuery methods ==== |
|||
The <code>jQuery</code> function is a [[Factory method pattern|factory]] for creating a jQuery object that represents one or more DOM nodes. jQuery objects have methods to manipulate these nodes. These methods (sometimes called ''commands)'', are [[method chaining|''chainable'']] as each method also returns a jQuery object. |
|||
Access to and manipulation of multiple DOM nodes in jQuery typically begins with calling the <code lang="jQuery">$</code> function with a CSS selector string. This returns a jQuery object referencing all the matching elements in the [[HTML]] page. <code lang="jQuery">$("div.test")</code>, for example, returns a jQuery object with all the <code lang="html5">div</code> elements that have the class <code lang="html5">test</code>. This node set can be manipulated by calling methods on the returned jQuery object. |
|||
==== Static utilities ==== |
|||
These are utility functions and do not directly act upon a jQuery object. They are accessed as static methods on the jQuery or $ identifier. For example, <code>$.ajax()</code> is a static method. |
|||
===No-conflict mode=== |
|||
jQuery provides a <code>$.noConflict()</code> function, which relinquishes control of the <code>$</code> name. This is useful if jQuery is used on a Web page also linking another library that demands the <code>$</code> symbol as its identifier. In no-conflict mode, developers can use <code>jQuery</code> as a replacement for <code>$</code> without losing functionality.<ref>{{cite web|url=http://api.jquery.com/jquery.noconflict/| title=jQuery.noConflict() jQuery API Documentation}}</ref> |
|||
===Typical start-point=== |
|||
Typically, jQuery is used by putting initialization code and event handling functions in <code lang="jQuery">$(''handler'')</code>. This is triggered by jQuery when the browser has finished constructing the DOM for the current Web page. |
|||
<syntaxhighlight lang="javascript"> |
|||
$(function () { |
|||
// This anonymous function is called when the page has completed loading. |
|||
// Here, one can place code to create jQuery objects, handle events, etc. |
|||
}); |
}); |
||
</syntaxhighlight> |
|||
</source> |
|||
This writes the number 234 to the document. |
|||
or |
|||
<syntaxhighlight lang="javascript"> |
|||
$(fn); // The function named fn, defined elsewhere, is called when the page has loaded. |
|||
</syntaxhighlight> |
|||
Historically, <code lang="javascript">$(document).ready(callback)</code> has been the de facto idiom for running code after the DOM is ready. However, since jQuery 3.0, developers are encouraged to use the much shorter <code lang="javascript">$(handler)</code> signature instead.<ref name="howToUseReady">{{cite web|url=https://jquery.com/upgrade-guide/3.0/#deprecated-document-ready-handlers-other-than-jquery-function|title=jQuery Core 3.0 Upgrade Guide - jQuery|first=jQuery Foundation -|last=jquery.org}}</ref> |
|||
===Chaining=== |
|||
jQuery object methods typically also return a jQuery object, which enables the use of ''method chains'': |
|||
<syntaxhighlight lang="javascript"> |
|||
$('div.test') |
|||
.on('click', handleTestClick) |
|||
.addClass('foo'); |
|||
</syntaxhighlight> |
|||
This line finds all <code lang="HTML">div</code> [[HTML element|elements]] with class attribute <code lang="HTML">test</code> , then registers an event handler on each element for the "click" event, then adds the class attribute <code lang="HTML">foo</code> to each element. |
|||
Certain jQuery object methods retrieve specific values (instead of modifying a state). An example of this is the <code>val()</code> method, which returns the current value of a [[Text box|text input]] element. In these cases, a statement such as <code lange="jQuery">$('#user-email').val()</code> cannot be used for chaining as the return value does not reference a jQuery object. |
|||
===Creating new DOM elements=== |
|||
Besides accessing existing DOM nodes through jQuery, it is also possible to create new DOM nodes, if the string passed as the argument to <code lang="jQuery">$()</code> factory looks like HTML. For example, the below code finds an HTML <code lang="jQuery">select</code> element, and creates a new <code lang="jQuery">option</code> element with the value <code lang="jQuery">VAG</code> and the label <code lang="jQuery">Volkswagen</code>, which is then appended to the [[Drop-down list|select menu]]: |
|||
<syntaxhighlight lang="javascript"> |
|||
$('select#car-brands') |
|||
.append($('<option>') |
|||
.prop(value,"VAG") |
|||
.text('Volkswagen') |
|||
); |
|||
</syntaxhighlight> |
|||
===Ajax=== |
|||
It is possible to |
It is possible to make [[Ajax (programming)|Ajax]] requests (with [[cross-browser]] support) with <code lang="jQuery">$.ajax()</code> to load and manipulate remote data. |
||
< |
<syntaxhighlight lang="javascript"> |
||
$.ajax({ |
$.ajax({ |
||
type: |
type: 'POST', |
||
url: |
url: '/process/submit.php', |
||
data: |
data: { |
||
name : 'John', |
|||
success: function(msg){ |
|||
location : 'Boston', |
|||
alert( "Data Saved: " + msg ); |
|||
} |
}, |
||
}).then(function(msg) { |
|||
alert('Data Saved: ' + msg); |
|||
}).catch(function(xmlHttpRequest, statusText, errorThrown) { |
|||
alert( |
|||
'Your form submission failed.\n\n' |
|||
+ 'XML Http Request: ' + JSON.stringify(xmlHttpRequest) |
|||
+ ',\nStatus Text: ' + statusText |
|||
+ ',\nError Thrown: ' + errorThrown); |
|||
}); |
}); |
||
</syntaxhighlight> |
|||
</source> |
|||
This example posts the data <code>name=John</code> and <code>location=Boston</code> to <code>example.php</code> on the server. When this request finishes successfully, the success function is called to alert the user. |
|||
This example posts the data <code>name=John</code> and <code>location=Boston</code> to <code>/process/submit.php</code> on the server. When this request finishes the success function is called to alert the user. If the request fails it will alert the user to the failure, the status of the request, and the specific error. |
|||
==jQuery plug-ins== |
|||
Because of jQuery's architecture, other developers can use its constructs to create [[Plug-in (computing)|plug-in]] code to extend its functionality. Currently there are thousands of jQuery plug-ins available on the web<ref name="plugins.jquery.com">{{cite web|title=Plugins|url=http://plugins.jquery.com/|publisher=The jQuery Project|accessdate=26 August 2010}}</ref> that cover a wide range of functionality such as Ajax helpers, webservices, datagrids, dynamic lists, XML and XSLT tools, drag and drop, events, cookie handling, modal windows, even a jQuery-based [[Commodore 64]] emulator.<ref>{{cite web|title=JavaScript Commodore Emulator |url=http://www.kingsquare.nl/jsc64|publisher=Kingsquare|accessdate=26 August 2010}}</ref> |
|||
The above example uses the <code>.then()</code> and <code>.catch()</code> methods to register callbacks that run when the response has completed. These [[Futures and promises|promise callbacks]] must be used due to the asynchronous nature of [[Ajax (programming)|Ajax]] requests. |
|||
An important source of jQuery plug-ins is the Plugins sub-domain of the jQuery Project website.<ref name="plugins.jquery.com"/> There are alternative plug-in search engines<ref>{{cite web|title=pluginquery|url=http://www.pluginquery.com/|publisher=Appleton Webb Ltd|accessdate=26 August 2010}}</ref> that take more specialist approaches, such as only listing plug-ins that meet certain criteria (e.g. those that have a public code repository). The tutorials page on the jQuery site has a list of links to jQuery plug-in tutorials under the "Plugin development" section.<ref>{{cite web|title=Tutorials|url=http://docs.jquery.com/Tutorials|publisher=The jQuery Project|accessdate=26 August 2010}}</ref> |
|||
== jQuery plug-ins == |
|||
==Origin of Name== |
|||
jQuery's architecture allows developers to create [[Plug-in (computing)|plug-in]] code to extend its function. There are thousands of jQuery plug-ins available on the Web<ref name="plugins.jquery.com">{{cite web|title=Plugins|url=https://plugins.jquery.com/|publisher=The jQuery Project|access-date=2019-04-15}}</ref> that cover a range of functions, such as Ajax helpers, [[Web service]]s, datagrids, dynamic lists, [[XML]] and [[XSLT]] tools, [[drag and drop]], events, [[HTTP cookie|cookie]] handling, and [[modal window]]s. |
|||
The use of the name jQuery is somewhat fanciful, as the library has little to do with queries. |
|||
Shortly after its release in January 2006, author John Resig stated, "I was, originally, going to use JSelect, but all the domain names were taken already."<ref>{{cite web|title=BarCampNYC Wrap-up|url=http://ejohn.org/blog/barcampnyc-wrap-up|accessdate=27 May 2011|publisher=John Resig}}(see Comments section of page)</ref> |
|||
An important source of jQuery plug-ins is the plugins sub-domain of the jQuery Project website.<ref name="plugins.jquery.com"/> The plugins in this subdomain, however, were accidentally deleted in December 2011 in an attempt to rid the site of spam.<ref>{{cite web|url=https://blog.jquery.com/2011/12/08/what-is-happening-to-the-jquery-plugins-site/#pluginstldr|title=What Is Happening To The jQuery Plugins Site?|work=jQuery Blog|access-date=22 April 2015}}</ref> The new site is a [[GitHub]]-hosted repository, which required developers to resubmit their plugins and to conform to new submission requirements.<ref>{{cite web|url=https://github.com/jquery/plugins.jquery.com|title=jquery/plugins.jquery.com|work=GitHub|access-date=22 April 2015}}</ref> jQuery provides a "Learning Center" that can help users understand JavaScript and get started developing jQuery plugins.<ref>{{cite web|title=jQuery Learning Center|url=http://learn.jquery.com/|publisher=jQuery Foundation |access-date=2014-07-02}}</ref> |
|||
==Release history== |
==Release history== |
||
{| class="wikitable |
{| class="wikitable sortable" |
||
|- |
|- |
||
! Version |
|||
! Release date |
|||
! Initial release |
|||
! Version number |
|||
! Latest update |
|||
! Minified size (KB) |
|||
! Additional notes |
! Additional notes |
||
|- |
|- |
||
| [http://jquery.com/blog/2006/08/26/jquery-10/ August 26, 2006] |
|||
| 1.0 |
| 1.0 |
||
| {{start date|2006|08|26}} |
|||
| First stable release |
|||
|- |
|||
| [http://jquery.com/blog/2006/08/31/jquery-101/ August 31, 2006] |
|||
| 1.0.1 |
|||
| |
| |
||
|- |
|||
| [http://jquery.com/blog/2006/10/09/jquery-102/ October 9, 2006] |
|||
| 1.0.2 |
|||
| |
| |
||
| First stable release |
|||
|- |
|- |
||
| [http://jquery.com/blog/2006/10/27/jquery-103/ October 27, 2006] |
|||
| 1.0.3 |
|||
| |
|||
|- |
|||
| [http://jquery.com/blog/2006/12/12/jquery-104/ December 12, 2006] |
|||
| 1.0.4 |
|||
| Last 1.0 bug fix |
|||
|- |
|||
| [http://jquery.com/blog/2007/01/14/jquery-birthday-11-new-site-new-docs/ January 14, 2007] |
|||
| 1.1 |
| 1.1 |
||
| {{start date|2007|01|14}} |
|||
| |
| |
||
|- |
|||
| [http://jquery.com/blog/2007/01/22/jquery-111/ January 22, 2007] |
|||
| 1.1.1 |
|||
| |
| |
||
|- |
|||
| [http://jquery.com/blog/2007/02/27/jquery-112/ February 27, 2007] |
|||
| 1.1.2 |
|||
| |
| |
||
|- |
|- |
||
| 1.2 |
|||
| [http://jquery.com/blog/2007/07/01/jquery-113-800-faster-still-20kb/ July 1, 2007] |
|||
| {{start date|2007|09|10}} |
|||
| 1.1.3 |
|||
| 1.2.6 |
|||
| 54.5 |
|||
| |
| |
||
|- |
|- |
||
| 1.3 |
|||
| [http://jquery.com/blog/2007/07/05/jquery-1131/ July 5, 2007] |
|||
| {{start date|2009|01|14}} |
|||
| 1.1.3.1 |
|||
| 1.3.2 |
|||
| |
|||
| 55.9 |
|||
| Sizzle Selector Engine introduced into core |
|||
|- |
|- |
||
| 1.4 |
|||
| [http://jquery.com/blog/2007/08/24/jquery-114-faster-more-tests-ready-for-12/ August 24, 2007] |
|||
| {{start date|2010|01|14}} |
|||
| 1.1.4 |
|||
| 1.4.4 |
|||
| 76.7 |
|||
| |
| |
||
|- |
|- |
||
| 1.5 |
|||
| [http://jquery.com/blog/2007/09/10/jquery-12-jqueryextendawesome/ September 10, 2007] |
|||
| {{start date|2011|01|31}} |
|||
| 1.2 |
|||
| 1.5.2 |
|||
| |
|||
| 83.9 |
|||
| Deferred callback management, ajax module rewrite |
|||
|- |
|- |
||
| 1.6 |
|||
| [http://jquery.com/blog/2007/09/16/jquery-121-quick-fixes-for-12/ September 16, 2007] |
|||
| {{start date|2011|05|03}} |
|||
| 1.2.1 |
|||
| 1.6.4 ({{start date|2011|09|12}})<ref>{{cite web |title=jQuery 1.6.4 Released|url=https://blog.jquery.com/2011/09/12/jquery-1-6-4-released/ |date=12 Sep 2011 |work=jQuery Blog}}</ref> |
|||
| |
|||
| 89.5 |
|||
| Significant performance improvements to the attr() and val() functions |
|||
|- |
|- |
||
| 1.7 |
|||
| [http://jquery.com/blog/2008/01/15/jquery-122-2nd-birthday-present/ January 15, 2008] |
|||
| {{start date|2011|11|03}} |
|||
| 1.2.2 |
|||
| 1.7.2 ({{start date|2012|03|21}})<ref>{{cite web |title=jQuery 1.7.2 Released |url=https://blog.jquery.com/2012/03/21/jquery-1-7-2-released/ |date=21 Mar 2012 |work=jQuery Blog}}</ref> |
|||
| |
|||
| 92.6 |
|||
| New Event APIs: .on() and .off(), while the old APIs are still supported. |
|||
|- |
|- |
||
| 1.8 |
|||
| [http://jquery.com/blog/2008/02/08/jquery-123-air-namespacing-and-ui-alpha/ February 8, 2008] |
|||
| {{start date|2012|08|09}} |
|||
| 1.2.3 |
|||
| 1.8.3 ({{start date|2012|11|13}})<ref>{{cite web |title=jQuery 1.8.3 Released |url=https://blog.jquery.com/2012/11/13/jquery-1-8-3-released/ |date=13 Nov 2012 |work=jQuery Blog}}</ref> |
|||
| |
|||
| 91.4 |
|||
| Sizzle Selector Engine rewritten, improved animations and $(html, props) flexibility. |
|||
|- |
|- |
||
| 1.9 |
|||
| [http://docs.jquery.com/Release:jQuery_1.2.4 May 19, 2008] |
|||
| {{start date|2013|01|15}} |
|||
| 1.2.4 |
|||
| 1.9.1 ({{start date|2013|02|04}})<ref>{{cite web |title=jQuery 1.9.1 Released |url=https://blog.jquery.com/2013/02/04/jquery-1-9-1-released/ |date=4 Feb 2013 |work=jQuery Blog}}</ref> |
|||
| |
|||
| 90.5 |
|||
| Removal of deprecated interfaces and code cleanup |
|||
|- |
|- |
||
| 1.10 |
|||
| [http://docs.jquery.com/Release:jQuery_1.2.5 May 21, 2008] |
|||
| {{start date|2013|05|24}} |
|||
| 1.2.5 |
|||
| 1.10.2 ({{start date|2013|07|03}})<ref>{{cite web |title=jQuery 1.10.2 and 2.0.3 Released |url=https://blog.jquery.com/2013/07/03/jquery-1-10-2-and-2-0-3-released/ |date=3 Jul 2013 |work=jQuery Blog}}</ref> |
|||
| Fix for bad build of 1.2.4 |
|||
| 90.9 |
|||
| Incorporated bug fixes and differences reported from both the 1.9 and 2.0 beta cycles |
|||
|- |
|- |
||
| 1.11 |
|||
| [http://docs.jquery.com/Release:jQuery_1.2.6 May 24, 2008] |
|||
| {{start date|2014|01|24}} |
|||
| 1.2.6 |
|||
| 1.11.3 ({{start date|2015|04|28}})<ref>{{cite web |title=jQuery 1.11.3 and 2.1.4 Released – iOS Fail-Safe Edition |url=https://blog.jquery.com/2015/04/28/jquery-1-11-3-and-2-1-4-released-ios-fail-safe-edition/ |date=28 Apr 2015 |work=jQuery Blog}}</ref> |
|||
| 93.7 |
|||
| |
| |
||
|- |
|- |
||
| 1.12 |
|||
| [http://blog.jquery.com/2009/01/14/jquery-13-and-the-jquery-foundation/ January 14, 2009] |
|||
| {{start date|2016|01|08}} |
|||
| 1.3 |
|||
| 1.12.4 ({{start date|2016|05|20}})<ref>{{cite web |title=jQuery 1.12.4 and 2.2.4 Released |url=https://blog.jquery.com/2016/05/20/jquery-1-12-4-and-2-2-4-released/ |date=20 May 2016 |work=jQuery Blog}}</ref> |
|||
| Sizzle Selector Engine introduced into core |
|||
| 94.9 |
|||
|- |
|||
| [http://blog.jquery.com/2009/01/21/jquery-131-released/ January 21, 2009] |
|||
| 1.3.1 |
|||
| |
| |
||
|- |
|- |
||
| 2.0 |
|||
| [http://blog.jquery.com/2009/02/20/jquery-132-released/ February 20, 2009] |
|||
| {{start date|2013|04|18}} |
|||
| 1.3.2 |
|||
| 2.0.3 ({{start date|2013|07|03}}) |
|||
| |
|||
| 81.7 |
|||
| Dropped IE 6–8 support for performance improvements and reduction in filesize |
|||
|- |
|- |
||
| 2.1 |
|||
| [http://blog.jquery.com/2010/01/14/jquery-14-released/ January 14, 2010] |
|||
| {{start date|2014|01|24}} |
|||
| 1.4 |
|||
| 2.1.4 ({{start date|2015|04|28}}) |
|||
| 82.4 |
|||
| |
| |
||
|- |
|- |
||
| 2.2 |
|||
| [http://jquery14.com/day-12/jquery-141-released January 25, 2010] |
|||
| {{start date|2016|01|08}} |
|||
| 1.4.1 |
|||
| 2.2.4 ({{start date|2016|05|20}}) |
|||
| 83.6 |
|||
| |
| |
||
|- |
|- |
||
| 3.0 |
|||
| [http://blog.jquery.com/2010/02/19/jquery-142-released/ February 19, 2010] |
|||
| {{start date|2016|6|9}}<ref>{{cite web|url=https://www.infoq.com/news/2016/06/jQuery-3|title=Long-awaited jQuery 3.0 Brings Slim Build|last=Chesters|first=James|date=2016-06-15|publisher=infoq.com|access-date=2017-01-28}}</ref> |
|||
| 1.4.2 |
|||
| 3.0.0 ({{start date|2016|6|9}}) |
|||
| |
|||
| 84.3 |
|||
| Promises/A+ support for Deferreds, $.ajax and $.when, .data() HTML5-compatible |
|||
|- |
|- |
||
| 3.1 |
|||
| [http://blog.jquery.com/2010/10/16/jquery-143-released/ October 16, 2010] |
|||
| {{start date|2016|7|7}} |
|||
| 1.4.3 |
|||
| 3.1.1 ({{start date|2016|9|23}}) |
|||
| |
|||
| 84.7 |
|||
| jQuery.readyException added, ready handler errors are now not silenced |
|||
|- |
|- |
||
| 3.2 |
|||
| [http://blog.jquery.com/2010/11/11/jquery-1-4-4-release-notes/ November 11, 2010] |
|||
| {{start date|2017|3|16}}<ref>{{cite web|title=jQuery 3.2.0 Is Out!|work=jQuery Blog|url=https://blog.jquery.com/2017/03/16/jquery-3-2-0-is-out/|access-date=12 March 2018|date=16 March 2017}}</ref> |
|||
| 1.4.4 |
|||
| 3.2.1 ({{start date|2017|3|20}}) |
|||
| |
|||
| 84.6 |
|||
| Added support for retrieving contents of <code><nowiki><template></nowiki></code> elements, and deprecation of various old methods. |
|||
|- |
|- |
||
| 3.3 |
|||
| [http://blog.jquery.com/2011/01/31/jquery-15-released/ January 31, 2011] |
|||
| {{start date|2018|1|19}}<ref>{{cite web|title=jQuery 3.3.0 – A fragrant bouquet of deprecations and…is that a new feature?|work=jQuery Blog|url=https://blog.jquery.com/2018/01/19/jquery-3-3-0-a-fragrant-bouquet-of-deprecations-and-is-that-a-new-feature/|access-date=2019-04-15|date=2018-01-19}}</ref> |
|||
| 1.5 |
|||
| 3.3.1 ({{start date|2018|1|20}})<ref>{{cite web|title=jQuery 3.3.1 – fixed dependencies in release tag|work=jQuery Blog|url=https://blog.jquery.com/2018/01/20/jquery-3-3-1-fixed-dependencies-in-release-tag/|access-date=2019-04-15|date=2018-01-20}}</ref> |
|||
| Deferred callback management |
|||
| 84.9 |
|||
| Deprecation of old functions, functions that accept classes now also support them in array format. |
|||
|- |
|- |
||
|3.4 |
|||
| [http://blog.jquery.com/2011/02/24/jquery-151-released/ February 24, 2011] |
|||
| {{start date|2019|4|10}}<ref>{{cite web|title=jQuery 3.4.0 Released|work=jQuery Blog|url=https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/|access-date=2019-04-15|date=2018-04-10}}</ref> |
|||
| 1.5.1 |
|||
|3.4.1 (May 1, 2019)<ref>{{cite web|url=https://blog.jquery.com/2019/05/01/jquery-3-4-1-triggering-focus-events-in-ie-and-finding-root-elements-in-ios-10/|title=jQuery 3.4.1: triggering focus events in IE and finding root elements in iOS 10|publisher=jQuery Foundation|work=jQuery Blog}}</ref> |
|||
| |
|||
|86.1 |
|||
| Performance improvements, <code>nonce</code> and <code>nomodule</code> support, fixes for radio elements, a minor security fix. |
|||
|- |
|- |
||
|3.5 |
|||
| [http://blog.jquery.com/2011/03/31/jquery-152-released/ March 31, 2011] |
|||
| {{start date|2020|4|10}}<ref name="blog-350-release">{{cite web|title=jQuery 3.5.0 Released!|work=jQuery Blog|url=https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/|access-date=2020-04-11|date=2020-04-10}}</ref> |
|||
| 1.5.2 |
|||
|3.5.1 (May 4, 2020)<ref>{{cite web|url=https://blog.jquery.com/2020/05/04/jquery-3-5-1-released-fixing-a-regression/|title=jQuery 3.5.1 Released: Fixing a Regression|publisher=jQuery Foundation|work=jQuery Blog}}</ref> |
|||
| |
|||
|87.4 |
|||
| Security fixes, <code>.even()</code> & <code>.odd()</code> methods, <code>jQuery.trim</code> deprecated |
|||
|- |
|- |
||
|3.6 |
|||
| [http://blog.jquery.com/2011/05/03/jquery-16-released/ May 3, 2011] |
|||
| {{start date|2021|03|02}}<ref name="blog-360-release">{{cite web|last=jquery.org|first=jQuery Foundation-|title=jQuery 3.6.0 Released! {{!}} Official jQuery Blog|url=https://blog.jquery.com/2021/03/02/jquery-3-6-0-released/|access-date=2021-03-27|language=en-US}}</ref> |
|||
| 1.6 |
|||
|3.6.4 (March 8, 2023)<ref name="blog-364-release">{{Cite web|title= |
|||
| Significant performance improvements to the attr() and val() functions |
|||
jQuery 3.6.4 Released: Selector Forgiveness|url=https://blog.jquery.com/2023/03/08/jquery-3-6-4-released-selector-forgiveness/|access-date=2023-03-08|language=en-US}}</ref> |
|||
|88.2<ref>{{Cite web|title=jquery v3.6.4 |url=https://bundlephobia.com/package/jquery@3.6.4 |access-date=2023-03-08 |website=bundlephobia.com |language=en}}</ref> |
|||
|Bug fixes, return JSON when there is a JSONP error, handling of new Chrome selectors |
|||
|- |
|- |
||
|3.7 |
|||
| [http://blog.jquery.com/2011/05/12/jquery-1-6-1-released/ May 12, 2011] |
|||
| {{start date|2023|05|11}}<ref name="blog-370-release">{{cite web|last=jquery.org|first=jQuery Foundation-|title=jQuery 3.7.0 Released: Staying in Order {{!}} Official jQuery Blog|url=https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/|language=en-US}}</ref> |
|||
| 1.6.1 |
|||
|3.7.1 (August 28, 2023)<ref name="blog-371-release">{{Cite web|title= |
|||
| |
|||
jQuery 3.7.1 Released: Reliable Table Row Dimensions|url=https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/|access-date=2023-09-14|language=en-US}}</ref> |
|||
|85.4<ref>{{Cite web|title=jquery v3.7.0 |url=https://bundlephobia.com/package/jquery@3.7.0 |access-date=2023-05-11 |website=bundlephobia.com |language=en}}</ref> |
|||
|<code>.uniqueSort()</code> method, performance improvements, <code>.outerWidth(true)</code> & <code>.outerHeight(true)</code> handling of negative margins, focus fixes |
|||
|- |
|||
|4.0 |
|||
| {{start date|2024|02|06}}<ref name="blog-400b-release">{{cite web|last=jquery.org|first=jQuery Foundation-|title=jQuery 4.0.0 BETA!|url=https://blog.jquery.com/2024/02/06/jquery-4-0-0-beta/|language=en-US}}</ref> |
|||
|4.0.0-beta.2 |
|||
|78.8 |
|||
|IE11 support dropped, deprecated APIs removed, Array methods removed, focus event order changed, support for FormData, migration to ES modules |
|||
|} |
|} |
||
==Testing framework== |
|||
[[QUnit]] is a [[test automation framework]] used to test the jQuery project. The jQuery team developed it as an in-house unit testing library.<ref name="qunit-history">{{Cite web|url = https://qunitjs.com/#History|title = History|access-date = 2019-04-15|website = qunitjs.com}}</ref> The jQuery team uses it to test its code and plugins, but it can test any generic JavaScript code, including server-side JavaScript code.<ref name="qunit-history"/> |
|||
{{as of|2011}}, the jQuery Testing Team uses [[QUnit]] with [[TestSwarm]] to test each jQuery codebase release.<ref>{{Cite web|url=http://jquerytesting.pbworks.com/enwiki/w/page/41556026/FrontPage|title=jquerytesting [licensed for non-commercial use only] / FrontPage|website=jquerytesting.pbworks.com}}</ref> |
|||
== Alternatives to jQuery == |
|||
{{Cquote|quote= |
|||
Simplifying tasks such as HTML document traversal, animation, and event handling, the [[wikt:stalwart#English|stalwart]] jQuery JavaScript library changed the face of web development. {{as of|May 2019}}, jQuery is still being used in 74 percent of known websites, according to web technology surveyor W3Techs. Nevertheless, the jQuery library, which debuted in August 2006, is now being viewed by some developers as an older technology whose time has passed. |
|||
Alternatives to jQuery have emerged in recent years, such as the Cash library or even just modern, vanilla JavaScript, now that web browsers all handle JavaScript the same way and jQuery is no longer needed to solve compatibility issues. Arguments on Reddit and videos on YouTube make the case that jQuery has become obsolete, or at least is not as essential as it once was. |
|||
|author=Paul Krill, ''[[InfoWorld]]'' (2019)<ref>{{Cite web|last=Krill|first=Paul|date=2019-05-08|title=3 JavaScript libraries to replace jQuery|url=https://www.infoworld.com/article/3392876/3-javascript-libraries-to-replace-jquery.html|website=[[InfoWorld]]}}</ref>}} |
|||
As [[cross-browser compatibility]] is no longer as much of an issue, most of jQuery can nowadays be replaced with modern web standards, without losing much convenience.<ref>{{Cite web |title=You Might Not Need jQuery |url=https://youmightnotneedjquery.com/ |access-date=2022-04-23 |website=youmightnotneedjquery.com}}</ref> Partly due to this, [[GitHub]] removed jQuery from its pages in 2018.<ref>{{Cite web|date=2018-09-06|title=Removing jQuery from GitHub.com frontend|url=https://github.blog/2018-09-06-removing-jquery-from-github-frontend/|access-date=2021-07-21|website=The GitHub Blog|language=en-US}}</ref> |
|||
==See also== |
==See also== |
||
{{Portal|Free software}} |
{{Portal|Free and open-source software}} |
||
* [[Comparison of JavaScript frameworks]] |
* [[Comparison of JavaScript-based web frameworks]] |
||
* [[jQuery Mobile]] |
|||
* [[jQuery UI]] |
* [[jQuery UI]] |
||
*[[Web framework]] |
|||
*[[JavaScript library]] |
|||
==References== |
== References == |
||
{{Reflist |
{{Reflist}} |
||
==Further reading== |
==Further reading== |
||
* {{cite video |
|||
{{Refbegin}} |
|||
| url = https://www.youtube.com/watch?v=m5J4Yl0RV7w |
|||
* {{cite web |
|||
| title = |
| title = John Resig: Advancing JavaScript with Libraries |
||
| people = John Resig (speaker) |
|||
| last = Taft | first = Darryl K. |
|||
| |
| format = YouTube video |
||
| publisher = YUI Theater |
|||
| url=http://www.eweek.com/c/a/Application-Development/jQuery-Eases-JavaScript-AJAX-Development/ |
|||
| date = |
| date = 2007-04-13 |
||
| |
| access-date = 2018-01-09 |
||
}} |
}} |
||
* {{cite web |
* {{cite web |
||
| title = JavaScript, .Net developers aided in separate |
| title = JavaScript, .Net developers aided in separate project |
||
| last = Krill | first = Paul |
| last = Krill | first = Paul |
||
| work = [[InfoWorld]] |
| work = [[InfoWorld]] |
||
| url = |
| url = https://www.infoworld.com/article/2659272/javascript---net-developers-aided-in-separate-projects.html |
||
| date = 2006-08-31 |
| date = 2006-08-31 |
||
| |
| access-date = 2019-04-15 |
||
}} |
}} |
||
* {{cite |
* {{cite web |
||
| title = jQuery Eases JavaScript, AJAX Development |
|||
| url = http://video.yahoo.com/watch/410472/2391234 |
|||
| last = Taft | first = Darryl K. |
|||
| title = Advancing JavaScript with Libraries (Part 1) |
|||
| work = [[eWeek]] |
|||
| people = John Resig (speaker) |
|||
| url=https://www.eweek.com/development/jquery-eases-javascript-ajax-development |
|||
| format = Yahoo! Video |
|||
| |
| date = 2006-08-30 |
||
| date = |
| access-date = 2019-04-15 |
||
| accessdate = 2009-05-04 |
|||
}} |
}} |
||
* {{cite video |
|||
| url = http://video.yahoo.com/watch/412541/2395771 |
|||
| title = Advancing JavaScript with Libraries (Part 2) |
|||
| people = John Resig (speaker) |
|||
| format = Yahoo! Video |
|||
| publisher = YUI Theater |
|||
| date = 2007-04-13 |
|||
| accessdate = 2009-05-04 |
|||
}} |
|||
{{Refend}} |
|||
==External links== |
==External links== |
||
{{Commons category|JQuery}} |
|||
* {{official|http://jquery.com/}} |
|||
* {{Official website|//jquery.com}} |
|||
* [http://www.authenticsociety.com/blog/jQueryPluginTutorial_Beginner jQuery Plugin Development]: articles that explain building custom jQuery plugins. |
|||
* [http://oscarotero.com/jquery/ Quick API Reference] |
|||
* [http://jqueryui.com/ jQuery UI] |
|||
* [http://www.simpleeditions.com/38001/how-to-add-jquery-to-your-site How to: Install jQuery on your website]: installation tutorial. |
|||
* [http://drdobbs.com/java/229300630 Using jQuery to build a DOM tree] |
|||
* {{cite video |
|||
| people = Dmitri Gaskin (speaker) |
|||
| title = jQuery |
|||
| url = http://www.youtube.com/watch?v=8mwKq7_JlS8 |
|||
| format = YouTube |
|||
| publisher = Google Tech Talks |
|||
| date = 2008-04-03 |
|||
| accessdate = 2009-05-04 |
|||
}} |
|||
* [http://blogs.msdn.com/kartikb/archive/2009/10/07/c-linq-javascript-jquery.aspx JQuery intro for a C# developer]: blog that explains jQuery using an analogy to LINQ. |
|||
* [http://shivasoft.in/blog/microsoft/net/ajax-based-multiselect-jquery-autocomplete-control-in-asp-net/ Ajax Based multiselect JQuery Autocomplete UserControl in ASP.Net] |
|||
{{ECMAScript}} |
{{ECMAScript}} |
||
{{Application frameworks}} |
{{Application frameworks}} |
||
{{Widget toolkits}} |
{{Widget toolkits}} |
||
{{Authority control}} |
|||
{{DEFAULTSORT:Jquery}} |
{{DEFAULTSORT:Jquery}} |
||
[[Category:2006 software]] |
|||
[[Category:Ajax (programming)]] |
|||
[[Category:Computer libraries]] |
|||
[[Category:Free software programmed in JavaScript]] |
|||
[[Category:JavaScript libraries]] |
[[Category:JavaScript libraries]] |
||
[[Category:Ajax (programming)]] |
|||
[[Category:Software using the MIT license]] |
[[Category:Software using the MIT license]] |
||
[[Category: |
[[Category:Web development]] |
||
[[Category:Web frameworks]] |
|||
[[Category:Articles with example JavaScript code]] |
|||
[[ar:جي كويري]] |
|||
[[ca:JQuery]] |
|||
[[cs:JQuery]] |
|||
[[de:JQuery]] |
|||
[[es:JQuery]] |
|||
[[fa:جیکوئری]] |
|||
[[fr:JQuery]] |
|||
[[ko:JQuery]] |
|||
[[id:JQuery]] |
|||
[[it:JQuery]] |
|||
[[ka:JQuery]] |
|||
[[hu:JQuery]] |
|||
[[ml:ജെക്വറി]] |
|||
[[nl:JQuery]] |
|||
[[ja:JQuery]] |
|||
[[pl:JQuery]] |
|||
[[pt:JQuery]] |
|||
[[ro:JQuery]] |
|||
[[ru:JQuery]] |
|||
[[sk:JQuery]] |
|||
[[sv:JQuery]] |
|||
[[ta:யேகுவெரி]] |
|||
[[th:เจเควียรี]] |
|||
[[uk:JQuery]] |
|||
[[zh:JQuery]] |
Latest revision as of 03:21, 18 December 2024
Original author(s) | John Resig |
---|---|
Developer(s) | The jQuery Team |
Initial release | August 26, 2006 |
Stable release | 3.7.1
/ (August 28, 2023[1] ) |
Preview release | 4.0.0-beta.2
/ July 17, 2024[2] |
Repository | |
Written in | JavaScript |
Platform | See § Browser support |
Size | 27–274 KB[3] |
Type | JavaScript library |
License | MIT |
Website | jquery |
jQuery is a JavaScript library designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animations, and Ajax.[4] It is free, open-source software using the permissive MIT License.[5] As of August 2022[update], jQuery is used by 77% of the 10 million most popular websites.[6] Web analysis indicates that it is the most widely deployed JavaScript library by a large margin, having at least three to four times more usage than any other JavaScript library.[6][7]
jQuery's syntax is designed to make it easier to navigate a document, select DOM elements, create animations, handle events, and develop Ajax applications. jQuery also provides capabilities for developers to create plug-ins on top of the JavaScript library. This enables developers to create abstractions for low-level interaction and animation, advanced effects and high-level, theme-able widgets. The modular approach to the jQuery library allows the creation of powerful dynamic web pages and Web applications.
The set of jQuery core features—DOM element selections, traversal, and manipulation—enabled by its selector engine (named "Sizzle" from v1.3), created a new "programming style", fusing algorithms and DOM data structures. This style influenced the architecture of other JavaScript frameworks like YUI v3 and Dojo, later stimulating the creation of the standard Selectors API.[8]
Microsoft and Nokia bundle jQuery on their platforms.[9] Microsoft includes it with Visual Studio[10] for use within Microsoft's ASP.NET AJAX and ASP.NET MVC frameworks while Nokia has integrated it into the Web Run-Time widget development platform.[11]
Overview
[edit]jQuery, at its core, is a Document Object Model (DOM) manipulation library. The DOM is a tree-structure representation of all the elements of a Web page. jQuery simplifies the syntax for finding, selecting, and manipulating these DOM elements. For example, jQuery can be used for finding an element in the document with a certain property (e.g. all elements with the h1
tag), changing one or more of its attributes (e.g. color
, visibility
), or making it respond to an event (e.g. a mouse click).
jQuery also provides a paradigm for event handling that goes beyond basic DOM element selection and manipulation. The event assignment and the event callback function definition are done in a single step in a single location in the code. jQuery also aims to incorporate other highly used JavaScript functionality (e.g. fade ins and fade outs when hiding elements, animations by manipulating CSS properties).
The principles of developing with jQuery are:
- Separation of JavaScript and HTML: The jQuery library provides simple syntax for adding event handlers to the DOM using JavaScript, rather than adding HTML event attributes to call JavaScript functions. Thus, it encourages developers to completely separate JavaScript code from HTML markup.
- Brevity and clarity: jQuery promotes brevity and clarity with features like "chainable" functions and shorthand function names.
- Elimination of cross-browser incompatibilities: The JavaScript engines of different browsers differ slightly so JavaScript code that works for one browser may not work for another. Like other JavaScript toolkits, jQuery handles all these cross-browser inconsistencies and provides a consistent interface that works across different browsers.
- Extensibility: New events, elements, and methods can be easily added and then reused as a plugin.
History
[edit]jQuery was originally created in January 2006 at BarCamp NYC by John Resig, influenced by Dean Edwards' earlier cssQuery library.[12][13] It is currently maintained by a team of developers led by Timmy Willison (with the jQuery selector engine, Sizzle, being led by Richard Gibson).[14]
jQuery was originally licensed under the CC BY-SA 2.5, and relicensed to the MIT License in 2006.[15] At the end of 2006, it was dual-licensed under GPL and MIT licenses.[16] As this led to some confusion, in 2012 the GPL was dropped and is now only licensed under the MIT license.[17]
Popularity
[edit]- In 2015, jQuery was used on 62.7% of the top 1 million websites (according to BuiltWith), and 17% of all Internet websites.[18]
- In 2017, jQuery was used on 69.2% of the top 1 million websites (according to Libscore).[7]
- In 2018, jQuery was used on 78% of the top 1 million websites.[19]
- In 2019, jQuery was used on 80% of the top 1 million websites (according to BuiltWith),[19] and 74.1% of the top 10 million (per W3Techs).[6]
- In 2021, jQuery was used on 77.8% of the top 10 million websites (according to W3Techs).[20]
Features
[edit]jQuery includes the following features:
- DOM element selections using the multi-browser open source selector engine Sizzle, a spin-off of the jQuery project[21]
- DOM manipulation based on CSS selectors that uses elements' names and attributes, such as id and class, as criteria to select nodes in the DOM
- Events
- Effects and animations
- Ajax
- Deferred and Promise objects to control asynchronous processing
- JSON parsing
- Extensibility through plug-ins
- Utilities, such as feature detection
- Compatibility methods that are natively available in modern browsers, but need fallbacks for old browsers, such as
jQuery.inArray()
andjQuery.each()
. - Cross-browser support
Browser support
[edit]jQuery 3.0 and newer supports "current−1 versions" (meaning the current stable version of the browser and the version that preceded it) of Firefox (and ESR), Chrome, Safari, and Edge as well as Internet Explorer 9 and newer. On mobile it supports iOS 7 and newer, and Android 4.0 and newer.[22]
Distribution
[edit]The jQuery library is typically distributed as a single JavaScript file that defines all its interfaces, including DOM, Events, and Ajax functions. It can be included within a Web page by linking to a local copy or by linking to one of the many copies available from public servers. jQuery has a content delivery network (CDN) hosted by MaxCDN.[23] Google in Google Hosted Libraries service and Microsoft host the library as well.[24][25]
Example of linking a copy of the library locally (from the same server that hosts the Web page):
<script src="jquery-3.5.1.min.js"></script>
Example of linking a copy of the library from jQuery's public CDN:
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
Interface
[edit]Functions
[edit]jQuery provides two kinds of functions, static utility functions and jQuery object methods. Each has its own usage style.
Both are accessed through jQuery's main identifier: jQuery
. This identifier has an alias named $
.[26] All functions can be accessed through either of these two names.
jQuery methods
[edit]The jQuery
function is a factory for creating a jQuery object that represents one or more DOM nodes. jQuery objects have methods to manipulate these nodes. These methods (sometimes called commands), are chainable as each method also returns a jQuery object.
Access to and manipulation of multiple DOM nodes in jQuery typically begins with calling the $
function with a CSS selector string. This returns a jQuery object referencing all the matching elements in the HTML page. $("div.test")
, for example, returns a jQuery object with all the div
elements that have the class test
. This node set can be manipulated by calling methods on the returned jQuery object.
Static utilities
[edit]These are utility functions and do not directly act upon a jQuery object. They are accessed as static methods on the jQuery or $ identifier. For example, $.ajax()
is a static method.
No-conflict mode
[edit]jQuery provides a $.noConflict()
function, which relinquishes control of the $
name. This is useful if jQuery is used on a Web page also linking another library that demands the $
symbol as its identifier. In no-conflict mode, developers can use jQuery
as a replacement for $
without losing functionality.[27]
Typical start-point
[edit]Typically, jQuery is used by putting initialization code and event handling functions in $(handler)
. This is triggered by jQuery when the browser has finished constructing the DOM for the current Web page.
$(function () {
// This anonymous function is called when the page has completed loading.
// Here, one can place code to create jQuery objects, handle events, etc.
});
or
$(fn); // The function named fn, defined elsewhere, is called when the page has loaded.
Historically, $(document).ready(callback)
has been the de facto idiom for running code after the DOM is ready. However, since jQuery 3.0, developers are encouraged to use the much shorter $(handler)
signature instead.[28]
Chaining
[edit]jQuery object methods typically also return a jQuery object, which enables the use of method chains:
$('div.test')
.on('click', handleTestClick)
.addClass('foo');
This line finds all div
elements with class attribute test
, then registers an event handler on each element for the "click" event, then adds the class attribute foo
to each element.
Certain jQuery object methods retrieve specific values (instead of modifying a state). An example of this is the val()
method, which returns the current value of a text input element. In these cases, a statement such as $('#user-email').val()
cannot be used for chaining as the return value does not reference a jQuery object.
Creating new DOM elements
[edit]Besides accessing existing DOM nodes through jQuery, it is also possible to create new DOM nodes, if the string passed as the argument to $()
factory looks like HTML. For example, the below code finds an HTML select
element, and creates a new option
element with the value VAG
and the label Volkswagen
, which is then appended to the select menu:
$('select#car-brands')
.append($('<option>')
.prop(value,"VAG")
.text('Volkswagen')
);
Ajax
[edit]It is possible to make Ajax requests (with cross-browser support) with $.ajax()
to load and manipulate remote data.
$.ajax({
type: 'POST',
url: '/process/submit.php',
data: {
name : 'John',
location : 'Boston',
},
}).then(function(msg) {
alert('Data Saved: ' + msg);
}).catch(function(xmlHttpRequest, statusText, errorThrown) {
alert(
'Your form submission failed.\n\n'
+ 'XML Http Request: ' + JSON.stringify(xmlHttpRequest)
+ ',\nStatus Text: ' + statusText
+ ',\nError Thrown: ' + errorThrown);
});
This example posts the data name=John
and location=Boston
to /process/submit.php
on the server. When this request finishes the success function is called to alert the user. If the request fails it will alert the user to the failure, the status of the request, and the specific error.
The above example uses the .then()
and .catch()
methods to register callbacks that run when the response has completed. These promise callbacks must be used due to the asynchronous nature of Ajax requests.
jQuery plug-ins
[edit]jQuery's architecture allows developers to create plug-in code to extend its function. There are thousands of jQuery plug-ins available on the Web[29] that cover a range of functions, such as Ajax helpers, Web services, datagrids, dynamic lists, XML and XSLT tools, drag and drop, events, cookie handling, and modal windows.
An important source of jQuery plug-ins is the plugins sub-domain of the jQuery Project website.[29] The plugins in this subdomain, however, were accidentally deleted in December 2011 in an attempt to rid the site of spam.[30] The new site is a GitHub-hosted repository, which required developers to resubmit their plugins and to conform to new submission requirements.[31] jQuery provides a "Learning Center" that can help users understand JavaScript and get started developing jQuery plugins.[32]
Release history
[edit]Version | Initial release | Latest update | Minified size (KB) | Additional notes |
---|---|---|---|---|
1.0 | August 26, 2006 | First stable release | ||
1.1 | January 14, 2007 | |||
1.2 | September 10, 2007 | 1.2.6 | 54.5 | |
1.3 | January 14, 2009 | 1.3.2 | 55.9 | Sizzle Selector Engine introduced into core |
1.4 | January 14, 2010 | 1.4.4 | 76.7 | |
1.5 | January 31, 2011 | 1.5.2 | 83.9 | Deferred callback management, ajax module rewrite |
1.6 | May 3, 2011 | 1.6.4 (September 12, 2011[33] | )89.5 | Significant performance improvements to the attr() and val() functions |
1.7 | November 3, 2011 | 1.7.2 (March 21, 2012[34] | )92.6 | New Event APIs: .on() and .off(), while the old APIs are still supported. |
1.8 | August 9, 2012 | 1.8.3 (November 13, 2012[35] | )91.4 | Sizzle Selector Engine rewritten, improved animations and $(html, props) flexibility. |
1.9 | January 15, 2013 | 1.9.1 (February 4, 2013[36] | )90.5 | Removal of deprecated interfaces and code cleanup |
1.10 | May 24, 2013 | 1.10.2 (July 3, 2013[37] | )90.9 | Incorporated bug fixes and differences reported from both the 1.9 and 2.0 beta cycles |
1.11 | January 24, 2014 | 1.11.3 (April 28, 2015[38] | )93.7 | |
1.12 | January 8, 2016 | 1.12.4 (May 20, 2016[39] | )94.9 | |
2.0 | April 18, 2013 | 2.0.3 (July 3, 2013 | )81.7 | Dropped IE 6–8 support for performance improvements and reduction in filesize |
2.1 | January 24, 2014 | 2.1.4 (April 28, 2015 | )82.4 | |
2.2 | January 8, 2016 | 2.2.4 (May 20, 2016 | )83.6 | |
3.0 | June 9, 2016[40] | 3.0.0 (June 9, 2016 | )84.3 | Promises/A+ support for Deferreds, $.ajax and $.when, .data() HTML5-compatible |
3.1 | July 7, 2016 | 3.1.1 (September 23, 2016 | )84.7 | jQuery.readyException added, ready handler errors are now not silenced |
3.2 | March 16, 2017[41] | 3.2.1 (March 20, 2017 | )84.6 | Added support for retrieving contents of <template> elements, and deprecation of various old methods.
|
3.3 | January 19, 2018[42] | 3.3.1 (January 20, 2018[43] | )84.9 | Deprecation of old functions, functions that accept classes now also support them in array format. |
3.4 | April 10, 2019[44] | 3.4.1 (May 1, 2019)[45] | 86.1 | Performance improvements, nonce and nomodule support, fixes for radio elements, a minor security fix.
|
3.5 | April 10, 2020[46] | 3.5.1 (May 4, 2020)[47] | 87.4 | Security fixes, .even() & .odd() methods, jQuery.trim deprecated
|
3.6 | March 2, 2021[48] | 3.6.4 (March 8, 2023)[49] | 88.2[50] | Bug fixes, return JSON when there is a JSONP error, handling of new Chrome selectors |
3.7 | May 11, 2023[51] | 3.7.1 (August 28, 2023)[52] | 85.4[53] | .uniqueSort() method, performance improvements, .outerWidth(true) & .outerHeight(true) handling of negative margins, focus fixes
|
4.0 | February 6, 2024[54] | 4.0.0-beta.2 | 78.8 | IE11 support dropped, deprecated APIs removed, Array methods removed, focus event order changed, support for FormData, migration to ES modules |
Testing framework
[edit]QUnit is a test automation framework used to test the jQuery project. The jQuery team developed it as an in-house unit testing library.[55] The jQuery team uses it to test its code and plugins, but it can test any generic JavaScript code, including server-side JavaScript code.[55]
As of 2011[update], the jQuery Testing Team uses QUnit with TestSwarm to test each jQuery codebase release.[56]
Alternatives to jQuery
[edit]Simplifying tasks such as HTML document traversal, animation, and event handling, the stalwart jQuery JavaScript library changed the face of web development. As of May 2019[update], jQuery is still being used in 74 percent of known websites, according to web technology surveyor W3Techs. Nevertheless, the jQuery library, which debuted in August 2006, is now being viewed by some developers as an older technology whose time has passed. Alternatives to jQuery have emerged in recent years, such as the Cash library or even just modern, vanilla JavaScript, now that web browsers all handle JavaScript the same way and jQuery is no longer needed to solve compatibility issues. Arguments on Reddit and videos on YouTube make the case that jQuery has become obsolete, or at least is not as essential as it once was.
As cross-browser compatibility is no longer as much of an issue, most of jQuery can nowadays be replaced with modern web standards, without losing much convenience.[58] Partly due to this, GitHub removed jQuery from its pages in 2018.[59]
See also
[edit]- Comparison of JavaScript-based web frameworks
- jQuery Mobile
- jQuery UI
- Web framework
- JavaScript library
References
[edit]- ^ "jQuery 3.7.1 Released: Reliable Table Row Dimensions | Official jQuery Blog". August 28, 2023.
- ^ "Second Beta of jQuery 4.0.0 | Official jQuery Blog". July 17, 2024.
- ^ "Open-source Libraries and File Sizes - PageCDN". pagecdn.com. Retrieved July 21, 2020.
- ^ "jQuery: The write less, do more, JavaScript library". The jQuery Project. Retrieved April 29, 2010.
- ^ "jQuery Project License". jQuery Foundation. Retrieved March 11, 2017.
- ^ a b c "Usage of JavaScript libraries for websites". W3Techs. Archived from the original on November 15, 2019. Retrieved November 15, 2019.
jQuery (74.1%) is 3.7 times more popular than Bootstrap (19.9%).
- ^ a b "Libscore". Archived from the original on February 19, 2017. Retrieved February 11, 2017.
Top scripts are 1. jQuery (692,981 sites); 2. jQuery UI (193,680 sites); 3. Facebook SDK (175,369 sites); 4. Twitter Bootstrap JS (158,288 sites); 5. Modernizr (155,503 sites).
- ^ "Selectors API Level 1, W3C Recommendation" (21 February 2013). This standard turned what was jQuery "helper methods" into JavaScript-native ones, and the wide use of jQuery stimulated the fast adoption of
querySelector/querySelectorAll
into main Web browsers. - ^ Resig, John (September 28, 2008). "jQuery, Microsoft, and Nokia". jQuery Blog. jQuery. Retrieved January 29, 2009.
- ^ Guthrie, Scott (September 28, 2008). "jQuery and Microsoft". ScottGu's Blog. Retrieved April 15, 2019.
- ^ "Guarana UI: A jQuery Based UI Library for Nokia WRT". Forum Nokia. Archived from the original on August 16, 2011. Retrieved March 30, 2010.
- ^ York, Richard (2009). Beginning JavaScript and CSS Development with jQuery. Wiley. p. 28. ISBN 978-0-470-22779-4.
- ^ Resig, John (October 31, 2007). "History of jQuery". Retrieved April 15, 2019.
- ^ "The jQuery Team". jquery.com. JS Foundation. Retrieved May 22, 2019.
Team: Timmy Willison (jQuery Core Lead), Richard Gibson (Sizzle Lead, jQuery Core).
- ^ jquery-under-the-mit-license on jquery.org (2006)
- ^ license on jquery.org (archived 2010)
- ^ "jQuery Licensing Changes". jQuery Blog. September 10, 2012.
- ^ "Handling 15,000 requests per second: The Growth Behind jQuery". www.maxcdn.com. MaxCDN. June 20, 2015. Archived from the original on July 2, 2018. Retrieved July 2, 2018.
- ^ a b "jQuery Usage Statistics (Dec 2019)". trends.builtwith.com. December 31, 2019. Archived from the original on February 21, 2020. Retrieved February 21, 2020.
- ^ "Usage Statistics and Market Share of JavaScript Libraries (February 2020)". W3Techs. February 21, 2020. Archived from the original on February 21, 2020. Retrieved February 21, 2020.
- ^ Resig, John (January 14, 2009). "jQuery 1.3 and the jQuery Foundation". jQuery Blog. Retrieved May 4, 2009.
- ^ Browser Support | jQuery
- ^ jquery.org, jQuery Foundation -. "jQuery CDN".
- ^ "Google Libraries API - Developer's Guide". Retrieved March 11, 2012.
- ^ "Microsoft Ajax Content Delivery Network". ASP.net. Microsoft Corporation. Retrieved April 15, 2019.
- ^ js.foundation, JS Foundation -. "jQuery() | jQuery API Documentation". api.jquery.com. Retrieved July 2, 2018.
- ^ "jQuery.noConflict() jQuery API Documentation".
- ^ jquery.org, jQuery Foundation -. "jQuery Core 3.0 Upgrade Guide - jQuery".
- ^ a b "Plugins". The jQuery Project. Retrieved April 15, 2019.
- ^ "What Is Happening To The jQuery Plugins Site?". jQuery Blog. Retrieved April 22, 2015.
- ^ "jquery/plugins.jquery.com". GitHub. Retrieved April 22, 2015.
- ^ "jQuery Learning Center". jQuery Foundation. Retrieved July 2, 2014.
- ^ "jQuery 1.6.4 Released". jQuery Blog. September 12, 2011.
- ^ "jQuery 1.7.2 Released". jQuery Blog. March 21, 2012.
- ^ "jQuery 1.8.3 Released". jQuery Blog. November 13, 2012.
- ^ "jQuery 1.9.1 Released". jQuery Blog. February 4, 2013.
- ^ "jQuery 1.10.2 and 2.0.3 Released". jQuery Blog. July 3, 2013.
- ^ "jQuery 1.11.3 and 2.1.4 Released – iOS Fail-Safe Edition". jQuery Blog. April 28, 2015.
- ^ "jQuery 1.12.4 and 2.2.4 Released". jQuery Blog. May 20, 2016.
- ^ Chesters, James (June 15, 2016). "Long-awaited jQuery 3.0 Brings Slim Build". infoq.com. Retrieved January 28, 2017.
- ^ "jQuery 3.2.0 Is Out!". jQuery Blog. March 16, 2017. Retrieved March 12, 2018.
- ^ "jQuery 3.3.0 – A fragrant bouquet of deprecations and…is that a new feature?". jQuery Blog. January 19, 2018. Retrieved April 15, 2019.
- ^ "jQuery 3.3.1 – fixed dependencies in release tag". jQuery Blog. January 20, 2018. Retrieved April 15, 2019.
- ^ "jQuery 3.4.0 Released". jQuery Blog. April 10, 2018. Retrieved April 15, 2019.
- ^ "jQuery 3.4.1: triggering focus events in IE and finding root elements in iOS 10". jQuery Blog. jQuery Foundation.
- ^ "jQuery 3.5.0 Released!". jQuery Blog. April 10, 2020. Retrieved April 11, 2020.
- ^ "jQuery 3.5.1 Released: Fixing a Regression". jQuery Blog. jQuery Foundation.
- ^ jquery.org, jQuery Foundation-. "jQuery 3.6.0 Released! | Official jQuery Blog". Retrieved March 27, 2021.
- ^ "jQuery 3.6.4 Released: Selector Forgiveness". Retrieved March 8, 2023.
- ^ "jquery v3.6.4". bundlephobia.com. Retrieved March 8, 2023.
- ^ jquery.org, jQuery Foundation-. "jQuery 3.7.0 Released: Staying in Order | Official jQuery Blog".
- ^ "jQuery 3.7.1 Released: Reliable Table Row Dimensions". Retrieved September 14, 2023.
- ^ "jquery v3.7.0". bundlephobia.com. Retrieved May 11, 2023.
- ^ jquery.org, jQuery Foundation-. "jQuery 4.0.0 BETA!".
- ^ a b "History". qunitjs.com. Retrieved April 15, 2019.
- ^ "jquerytesting [licensed for non-commercial use only] / FrontPage". jquerytesting.pbworks.com.
- ^ Krill, Paul (May 8, 2019). "3 JavaScript libraries to replace jQuery". InfoWorld.
- ^ "You Might Not Need jQuery". youmightnotneedjquery.com. Retrieved April 23, 2022.
- ^ "Removing jQuery from GitHub.com frontend". The GitHub Blog. September 6, 2018. Retrieved July 21, 2021.
Further reading
[edit]- John Resig (speaker) (April 13, 2007). John Resig: Advancing JavaScript with Libraries (YouTube video). YUI Theater. Retrieved January 9, 2018.
- Krill, Paul (August 31, 2006). "JavaScript, .Net developers aided in separate project". InfoWorld. Retrieved April 15, 2019.
- Taft, Darryl K. (August 30, 2006). "jQuery Eases JavaScript, AJAX Development". eWeek. Retrieved April 15, 2019.