Tagged Questions

3
votes
3answers
5k views

Javascript: How to dynamically create an <option> that contains an HTML entity (— … «)

I'd like to add an <option> element to a <select> element where the <option> element's text contains an HTML entity: &mdash; In HTML, the code would look like this: <select ...
0
votes
3answers
25 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 ...