So I have a MultiSelect box with x values which I need the ability to move to another MultiSelect box and vise versa.
$().ready(function() { $('#add').click(function() { return !$('#select1 option:selected').remove().appendTo('#select2'); }); $('#remove').click(function() { return !$('#select2 option:selected').remove().appendTo('#select1'); }); });