|
Project Information
Members
Featured
Downloads
Links
|
IntroductionjqMultiSelects is a plugin for jQuery which enables the addition of common behaviour to <select> elements allowing multiple options to be selected. FeaturesjqMultiSelects enables you to deal purely with the presentation of your <select> elements, and then use the plugin to attach common behaviours to them. Current features include:
ExampleTo implement, start by creating your <select> elements: <select name="left" id="select_left" multiple="multiple"> <option>Item 1</option> <option>Item 2</option> </select></td> <a id="options_right" href="#">move right</a> <a id="options_left" href="#">move left</a> <select name="right" id="select_right" multiple="multiple"> <option>Item 3</option> <option>Item 4</option> </select> Then, to add the Multi-Selects behaviour to these listboxes, simply perform the following (usually in the $(document).ready() event): $(document).ready(function() {
$("#select_left").multiSelect("#select_right", {trigger: "#options_right"});
$("#select_right").multiSelect("#select_left", {trigger: "#options_left"});
})ChangelogVersion 0.2 Future DevelopmentCurrently planned additions (roughly in priority order) include:
DiscussionI am not often on the jQuery mailing list these days, but I get notified of any activity on this project so if you have any requests, suggestions, bug reports, modifications then please post them in the 'issues' section here. |