The official jQuery user interface library.
Go to file
2011-05-18 18:13:37 -05:00
build Build: Update to latest Closure Compiler jar 2011-03-20 12:21:42 +01:00
demos Button demo: modified order of selectors. Fixed #7094 - Buttons problem in Opera 2011-05-16 21:08:13 +10:00
external QUnit update 2011-05-18 15:14:46 +02:00
tests Unit Tests & effects.scale: Fixing bugs in effects unit tests - Particularly IE, found a bug in scale.js in the meantime. Fixes #7395 - Size based effects are breaking unit tests in IE - also leaking a global var 2011-05-18 18:13:37 -05:00
themes/base missing comma 2011-05-17 14:10:30 -07:00
ui Unit Tests & effects.scale: Fixing bugs in effects unit tests - Particularly IE, found a bug in scale.js in the meantime. Fixes #7395 - Size based effects are breaking unit tests in IE - also leaking a global var 2011-05-18 18:13:37 -05: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 Fix speling. 2011-05-11 07:57:10 +01: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 committers

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]