I see a number of examples of removing an item from a select dropdown by the items value ( such as this question ) but is there a way to remove an item from a select dropdown if all I know is the display text?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try this:
Tested it locally and it works. The exact snippet of code relevant to me was:
Then the jQuery:
You could always put it in a function:
Further Edit for Class Selector Question: For class selector, replace the '#' with a '.' as you would expect:
And as this is just a select, you can speed it up by combining with an element selector:
|
|||||||||
|
|
I suppose you could iterate over them:
Edit: James Wisman's answer is more concise, but this might be easier if the option has awkward characters in it that would otherwise interfere with the selector syntax. |
|||||
|