multiselect2side plugin: documentation and demo page

Demo 1 - Full demo select multiple double side

Select multiple="multiple" modified by multiselect2side

This is the javascript code to launch multiselect2side to #first select:

$().ready(function() {
	$('#first').multiselect2side();
});
				

Demo 2 - select multiple double side - moveOptions: false

Move buttons are disabled.

This is the javascript code to launch multiselect2side to #second select:

$().ready(function() {
	$('#second').multiselect2side({selectedPosition: 'right', moveOptions: false});
});
				

Demo 3 - select multiple double side - selectedPosition: 'left'

Elements selected are in the left, label of move buttoms are modified.

This is the javascript code to launch multiselect2side to #third select:

$().ready(function() {
	$('#third').multiselect2side({
		selectedPosition: 'left',
		moveOptions: true,
		labelTop: '+ +',
		labelBottom: '- -',
		labelUp: '+',
		labelDown: '-'
		});
});
				

Demo 4 - Select multiple double side with limited number of selectionable options

Select multiple="multiple" with parameter maxSelected, selectionable options limited to 4

This is the javascript code to launch multiselect2side to #first select:

$().ready(function() {
	$('#fourth').multiselect2side({maxSelected: 4});
});
				

Documentation

To use this jquery plugin:

For comments see the blog page.

Parameters:

Download

You can download the entire archive:

Or single file:

Release

License

Dual licensed under the MIT and GPL licenses.