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]
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:
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]
jQuery includes the following features:
jQuery.inArray()
and jQuery.each()
.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]
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):
<scriptsrc="jquery-3.5.1.min.js"></script>
Example of linking a copy of the library from jQuery's public CDN:
<scriptsrc="https://code.jquery.com/jquery-3.5.1.min.js"integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="crossorigin="anonymous"></script>
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.
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.
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.
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]
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]
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.
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'));
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'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]
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 |
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]
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]
JavaScript, often abbreviated as JS, is a programming language and core technology of the Web, alongside HTML and CSS. 99% of websites use JavaScript on the client side for webpage behavior.
Ajax is a set of web development techniques that uses various web technologies on the client-side to create asynchronous web applications. With Ajax, web applications can send and retrieve data from a server asynchronously without interfering with the display and behaviour of the existing page. By decoupling the data interchange layer from the presentation layer, Ajax allows web pages and, by extension, web applications, to change content dynamically without the need to reload the entire page. In practice, modern implementations commonly utilize JSON instead of XML.
Netscape Plugin Application Programming Interface (NPAPI) is a deprecated application programming interface (API) for web browser plugins, initially developed for Netscape Navigator 2.0 in 1995 and subsequently adopted by other browsers.
Dojo Toolkit is an open-source modular JavaScript library designed to ease the rapid development of cross-platform, JavaScript/Ajax-based applications and web sites. It was started by Alex Russell, Dylan Schiemann, David Schontzler, and others in 2004 and is dual-licensed under the modified BSD license or the Academic Free License.
Comet is a web application model in which a long-held HTTPS request allows a web server to push data to a browser, without the browser explicitly requesting it. Comet is an umbrella term, encompassing multiple techniques for achieving this interaction. All these methods rely on features included by default in browsers, such as JavaScript, rather than on non-default plugins. The Comet approach differs from the original model of the web, in which a browser requests a complete web page at a time.
Aptana, Inc. is a company that makes web application development tools for use with a variety of programming languages. Aptana's main products include Aptana Studio, Aptana Cloud and Aptana Jaxer.
The Prototype JavaScript Framework is a JavaScript framework created by Sam Stephenson in February 2005 as part of Ajax support in Ruby on Rails. It is implemented as a single file of JavaScript code, usually named prototype.js
. Prototype is distributed standalone, but also as part of larger projects, such as Ruby on Rails, script.aculo.us and Rico. As of March 2021, according to w3techs, Prototype is used by 0.6% of all websites.
The Yahoo! User Interface Library (YUI) is a discontinued open-source JavaScript library for building richly interactive web applications using techniques such as Ajax, DHTML, and DOM scripting. YUI includes several cores CSS resources. It is available under a BSD License. Development on YUI began in 2005 and Yahoo! properties such as My Yahoo! and the Yahoo! front page began using YUI in the summer of that year. YUI was released for public use in February 2006. It was actively developed by a core team of Yahoo! engineers.
MooTools is a lightweight, object-oriented JavaScript framework. It is released under the free, open-source MIT License.
A JavaScript library is a library of pre-written JavaScript code that allows for easier development of JavaScript-based applications, especially for AJAX and other web-centric technologies. They can be included in a website by embedding it directly in the HTML via a script tag.
This is a comparison of web frameworks for front-end web development that are heavily reliant on JavaScript code for their behavior.
A single-page application (SPA) is a web application or website that interacts with the user by dynamically rewriting the current web page with new data from the web server, instead of the default method of loading entire new pages. The goal is faster transitions that make the website feel more like a native app.
SWFObject is an unmaintained open-source JavaScript library used to embed Adobe Flash content onto Web pages and to protect the flash game against piracy, which is supplied as one small JavaScript file. The library can also detect the installed Adobe Flash Player plug-in in all major web browsers, on all major operating systems (OS), and can redirect the visitor to another webpage or show alternate HTML content if the installed plug-in is not suitable.
John Resig is an American software engineer and entrepreneur, best known as the creator and lead developer of the jQuery JavaScript library. As of 2021, he works as the chief software architect at Khan Academy.
jQuery Mobile is a touch-optimized web framework, specifically a JavaScript library, developed by the jQuery project team. The development focuses on creating a framework compatible with many smartphones and tablet computers, made necessary by the growing but heterogeneous tablet and smartphone market. The jQuery Mobile framework is consistent with other mobile app frameworks and platforms such as PhoneGap, Worklight, etc.
Bootstrap is a free and open-source CSS framework directed at responsive, mobile-first front-end web development. It contains HTML, CSS and (optionally) JavaScript-based design templates for typography, forms, buttons, navigation, and other interface components.
JsPHP is a cross-browser JavaScript library designed to make the PHP application programming interface (API) available in JavaScript environments. It was started by Kevin van Zonneveld as php.js and released as an open-source project in 2008. In late 2011 John Elliot forked the php.js project to JsPHP and released a web-based collaborative integrated development environment (IDE) at www.jsphp.com in an effort to rejuvenate and breathe new life into the project, and as an excuse to develop a content management system (CMS) with features for software developers, such as unit testing and benchmarking.
A headless browser is a web browser without a graphical user interface.
The OpenJS Foundation is an organization that was founded in 2019 from a merger of JS Foundation and Node.js Foundation. OpenJS promotes the JavaScript and web ecosystem by hosting projects and funds activities that benefit the ecosystem. The OpenJS Foundation is made up of 38 open source JavaScript projects including Appium, Dojo, jQuery, Node.js, Node-RED and webpack. Founding members included Google, Microsoft, IBM, PayPal, GoDaddy, and Joyent.
jQuery (74.1%) is 3.7 times more popular than Bootstrap (19.9%).
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).
querySelector/querySelectorAll
into main Web browsers.Team: Timmy Willison (jQuery Core Lead), Richard Gibson (Sizzle Lead, jQuery Core).