A jquery plugin to manage multi-select in a more design way.
Example available at : JSFiddle
enableChangeMode:Boolean–trueto enable item selection on change.falseTo remain on an item selection with a button.emptyOptionLabel:String– the label to show in the empty option added when inchange mode.addButtonLabel:String– the label to display in the selector button.
destroy: to undo the multiSelect on an element.refresh: to update the multiSelect with the new content from an element.
This plugin will only take effect on select with multiple attribute.
$("#MyMultiSelect").multiSelect();We can also use it with options :
$("#MyMultiSelect").multiSelect({enableChangeMode : true, emptyOptionLabel : "Empty Option"});And to call functions :
$("#MyMultiSelect").multiSelect("refresh");