I am think this should be fairly easy, but struggling a bit ... I have a SELECT input element that allows the user to select multiple items. I would like to pro
SELECT
Try this
$(document).ready(function() { $('#remove').click(function() { return $('#select1 option:selected').remove(); }); });