jQuery UI

jQuery UI is a collection of GUI widgets, animated visual effects, and themes implemented with jQuery (a JavaScript library), Cascading Style Sheets, and HTML.[4] According to JavaScript analytics service, Libscore, jQuery UI was used on over 197,000 of the top one million websites, making it the second most popular JavaScript library. Notable users were Pinterest, PayPal, IMDb, The Huffington Post, and Netflix.

JQuery UI
Developer(s)
  • Paul Bakaus
  • Scott González
  • Jörn Zaefferer
  • Felix Nagel
  • Mike Sherov
  • Rafael Xavier de Souza[1]
Stable release
1.13.1 / 20 January 2022 (2022-01-20)[2]
Repository
Written inJavaScript
TypePlug-in
LicenseMIT License[3]
Websitejqueryui.com

Both jQuery and jQuery UI are free and open-source software distributed by the jQuery Foundation under the MIT License; jQuery UI was first published in September 2007.[3][5]

Features

As of the 1.11.4 release, [6] interactions such as draggable/droppable and sortable are supported. jQueryUI comes with fully themeable widgets using a consolidated, coordinated theme mechanism,[7] such as Autocomplete, Datepicker, ProgressBar, Sliders, and more. Effects include color animations, class toggling.

Example

// Make the element with id "draggable" draggable
$(function () {
	$("#draggable").draggable();
});
<div id="draggable">
	<p>Drag me around</p>
</div>

This makes the div with the ID "draggable" draggable by the user's mouse.

See also

References

  1. "jQuery UI Team". jqueryui.com. The jQuery Foundation. Retrieved 5 February 2016.
  2. "jQuery UI 1.13.1". jqueryui.com. 20 January 2022. Retrieved 5 March 2022.
  3. "License". jQuery.com. The jQuery Foundation. Retrieved 12 June 2014.
  4. Sarrion, Eric (2012). jQuery UI. Sebastopol: O'Reilly Media. pp. 1–4. ISBN 9781449316990. OCLC 768796881.
  5. John Resig (17 September 2007). "jQuery UI: Interactions and plug-ins". jQuery blog. Retrieved 12 August 2012.
  6. "jQuery UI Demos". jQuery UI. Retrieved 5 February 2016.
  7. "jQuery UI: ThemeRoller". jQuery UI. Retrieved 5 February 2016.

Further reading

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.