Tagged Questions
0
votes
3answers
28 views
Remove an option from html multi select using prototype js library
I want to remove an option from a HTML multi select box using prototype. I tried the one below, and unfortunately it did not work
$('left').options.item($('left').selectedIndex)).remove();
I found ...