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 some example with .removedChild()..I did not want to use them as it defeats the purpose of using JS library like Prototype.

link|improve this question

55% accept rate
feedback

3 Answers

You are missing the quotes. Try this

$('left').options.item($('left').selectedIndex).remove();
link|improve this answer
Hey Shankar, sorry - I just edited the post, it was a typo. – Abhishek Jan 31 at 1:10
feedback

You could probably:

$('left').down(':selected').remove();

or :checked or :active or something. I assume.

edit Nope. Weird docs. http://api.prototypejs.org/dom/Element/select/

edit .select > .down. http://api.prototypejs.org/dom/Element/prototype/down/ Thanks @clockworkgeek

link|improve this answer
Replace select with down – clockworkgeek Jan 31 at 13:02
feedback

I figured out that there was a bracket missing. The right line of code is,

$('left').options.item($('left').selectedIndex).remove();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.