Chosen is a library for making long, unwieldy select boxes more friendly.
 
 
 
 
Go to file
Adam Ford 208370bd0d Hitting Tab selects current highlighted option
While navigating through native selects using the keyboard, one can start
typing the text of the desired option to select it, then hit the Tab key
to move to the next element with the desired option remaining selected.
This doesn't work with Chosen currently (the correct option is highlighted,
but it is not selected once the Tab key is hit.)

Now the current highlighted option in a non-multiple Chosen select is
selected when the Tab key is hit.

Resolves #104.
2011-09-20 10:56:04 -06:00
chosen Hitting Tab selects current highlighted option 2011-09-20 10:56:04 -06:00
coffee Hitting Tab selects current highlighted option 2011-09-20 10:56:04 -06:00
.gitignore Remove DS_Store from repository and add to gitignore 2011-07-08 15:36:35 -04:00
Cakefile Better report compilation errors during build 2011-08-19 11:41:59 -04:00
LICENSE.md Update License Info 2011-07-13 15:42:57 -04:00
README.md Don't update VERSION, please. 2011-07-31 22:54:53 +03:00
VERSION Update version number to 0.9.3 2011-09-12 17:56:54 -04:00
example.html Update example files with No Results Text details 2011-09-12 18:02:18 -04:00
example.jquery.html Update example files with No Results Text details 2011-09-12 18:02:18 -04:00

README.md

Chosen

Chosen is a library for making long, unwieldy select boxes more user friendly.

  • jQuery support: 1.4+
  • Prototype support: 1.7+

For documentation, usage, and examples, see:
http://harvesthq.github.com/chosen

Contributing to Chosen

Contributions and pull requests are very welcome. Please follow these guidelines when submitting new code.

  1. Make all changes in Coffeescript files, not JavaScript files.
  2. For feature changes, update both jQuery and Prototype versions
  3. Use 'cake build' to generate Chosen's JavaScript file and minified version.
  4. Don't touch the VERSION file
  5. Submit a Pull Request using GitHub.

Using CoffeeScript & Cake

First, make sure you have the proper CoffeeScript / Cake set-up in place.

  1. Install Coffeescript: the CoffeeScript documentation provides easy-to-follow instructions.
  2. Install UglifyJS: npm -g install uglify-js
  3. Verify that your $NODE_PATH is properly configured using echo $NODE_PATH

Once you're configured, building the JavasScript from the command line is easy:

cake build                # build Chosen from source
cake watch                # watch coffee/ for changes and build Chosen

If you're interested, you can find the recipes in Cakefile.

Chosen Credits

Notable Forks