The official jQuery user interface library.
Go to file
Jörn Zaefferer c17f245d98 Autocomplete: Revert fix for #7024, broke regular menu selection.
Disabled test for now (need to reopen ticket).
2011-05-11 13:19:46 +02:00
build Build: Update to latest Closure Compiler jar 2011-03-20 12:21:42 +01:00
demos Combobox demo: Fix padding on input for alignment with button. Fixes #6729 - Combobox: Incorrect button size 2011-05-10 17:33:32 +02:00
external Updated to latest QUnit 2011-03-20 15:56:32 +01:00
tests Autocomplete: Revert fix for #7024, broke regular menu selection. 2011-05-11 13:19:46 +02:00
themes/base Resizable: switch data: background image to valid image file, small 1px transparent gif. Fixed #7293 - Resizable: Chrome dev tools console shows GET data: undefined (undefined) 2011-04-29 07:00:58 -04:00
ui Autocomplete: Revert fix for #7024, broke regular menu selection. 2011-05-11 13:19:46 +02:00
.gitignore Adding a .gitignore file with some presets 2010-03-21 21:11:38 +01:00
AUTHORS.txt Updated AUTHORS.txt with URLs to website and Github, thanks Ralph 2010-03-22 03:39:32 +01:00
GPL-LICENSE.txt removed extra level ui folder 2008-06-07 17:35:27 +00:00
jquery-1.5.1.js Switched to latest stable jQuery 1.5.1 2011-03-02 20:49:20 -05:00
MIT-LICENSE.txt Updated copyright year. 2011-01-17 09:13:18 -05:00
README.md Readme update: Some instructions for cherry-picking from pull requests 2011-05-09 21:42:44 +02:00
version.txt Updating the master version to 1.9pre 2010-10-25 14:46:02 -04:00

jQuery UI - Interactions and Widgets for the web

jQuery UI provides interactions like Drag and Drop and widgets like Autocomplete, Tabs and Slider and makes these as easy to use as jQuery itself.

If you want to use jQuery UI, go to jqueryui.com to get started. Or visit the Using jQuery UI Forum for discussions and questions.

If you are interested in helping developing jQuery UI, you are in the right place. To discuss development with team members and the community, visit the Developing jQuery UI Forum.

For commiters

When looking at pull requests, first check for proper commit messages.

Unless everything is fine and you can merge directly via GitHub's interface, fetch the remote first:

git remote add [username] [his-fork.git] -f

If you want just one commit and edit the commit message:

git cherry-pick -e [sha-of-commit]

If it should go to the stable brach, cherry-pick it to stable:

git checkout 1-8-stable git cherry-pick -x [sha-of-commit]