Software:jQuery UI
Developer(s) |
|
---|---|
Written in | JavaScript |
Type | Plug-in |
License | MIT License[2] |
Website | jqueryui |
jQuery UI is a collection of GUI widgets, animated visual effects, and themes implemented with jQuery (a JavaScript library), Cascading Style Sheets, and HTML.[3] Using the Shodan search engine query term cpe:"cpe:/a:jquery/jquery_ui" we can determine that jQuery UI is used on approximately 800k web sites. Pinterest, PayPal, IMDb, HuffPost, and Netflix are utilizing the library.
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.[2][4]
As of October 7, 2021 jQuery UI is in maintenance mode, with no new features being planned.[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
- ↑ "jQuery UI Team". The jQuery Foundation. http://jqueryui.com/about/#jquery-ui-team.
- ↑ 2.0 2.1 "License". The jQuery Foundation. http://jquery.org/license/.
- ↑ Sarrion, Eric (2012). jQuery UI. Sebastopol: O'Reilly Media. pp. 1–4. ISBN 9781449316990. OCLC 768796881.
- ↑ John Resig (17 September 2007). "jQuery UI: Interactions and plug-ins". jQuery blog. http://blog.jquery.com/2007/09/17/jquery-ui-interactions-and-widgets.
- ↑ "jQuery maintainers update and transition jQuery UI as part of overall modernization efforts". jQuery Blog. https://blog.jquery.com/2021/10/07/jquery-maintainers-update-and-transition-jquery-ui-as-part-of-overall-modernization-efforts/.
- ↑ "jQuery UI Demos". jQuery UI. http://jqueryui.com/demos/.
- ↑ "jQuery UI: ThemeRoller". jQuery UI. http://jqueryui.com/themeroller.
Further reading
- Sarrion, Eric (March 24, 2012). jQuery UI (1st ed.). O'Reilly Media. p. 244. ISBN 978-1449316990. http://shop.oreilly.com/product/0636920023159.do.
- Wellman, Dan (August 23, 2011). jQuery UI 1.8: The User Interface Library for jQuery (1st ed.). Packt Publishing. p. 424. ISBN 978-1849516525. http://www.packtpub.com/jquery-ui-1-8-user-interface-library/book.
- de Jonge, Adriaan, Dutson, Phillip (November 2, 2012). jQuery, jQuery UI, and jQuery Mobile: Recipes and Examples (1st ed.). Addison-Wesley Professional. p. 400. ISBN 978-0-321-82208-6. http://www.informit.com/title/0321822080.
External links
Original source: https://en.wikipedia.org/wiki/JQuery UI.
Read more |