12 Dec 2012 - v0.9.11

Retain Select Classes, Disable Split Words

Add an option to inherit initial select classes

When enabled, this option will grab any class names off the initial select and add them to Chosen's container div:

Take:

<select id="copyClasses" classes="this-class-comes-with">
  ...
</select>

Run:

$("#copyClasses").chosen({ inherit_select_classes: true; });

Get:

<div id="copyClasses_chzn" class="... this-class-comes-with">
  ...
</div>

(#917)
Add an option to disable searching split words

By default, Chosen will attempt to search across words by splitting option text at a space. For example, a search of "Stat" will match "United States". This can now be disabled:

$("select").chosen({ enable_split_word_search: false });

(#824, #940)


5 Dec 2012 - v0.9.10

Copy Select Title, Bug Fixes

Improvements

    Handle select title (#914): applies a select's title attribute to Chosen's container div if it exists.

Bug Fixes

    Fiexd Firefox mousedown drag issue (#902)
    Fixed the handling of ctrl key for multiple select (#916)
    Fixed multiple select placeholder clipping bug (#920)
    Expose Chosen to the window object (#929)


28 Nov 2012 - v0.9.9

12 Mar 2012 - v0.9.8

19 Jan 2012 - v0.9.7

12 Jan 2012 - v0.9.6

30 Sep 2011 - v0.9.5

29 Sep 2011 - v0.9.4

12 Sep 2011 - v0.9.3

12 Sep 2011 - v0.9.2

1 Aug 2011 - v0.9.1

31 Jul 2011 - v0.9
