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 name="test" id="test">
<option value="">&mdash; Select One &mdash;</option>
</select>

My Javascript code looks like this:

function selectOne() {
  var e = document.getElementById('test');
  e.options[0] = new Option('&mdash; Select One &mdash;', '');
}

However, as you will see if you test this, the &mdash; becomes escaped. I had the same outcome when I tried:

e.options[o].text = '&mdash; Select One &mdash;';

(observed behavior was in IE7 ... did not test with FireFox/Safari/etc -- Ie7 is the only browser I need at the moment).

link|improve this question

75% accept rate
is there a reason the "-" must be escaped? – Andrew Hare Jan 8 '09 at 18:08
I didn't know of another way to (easily) add an mdash. If it were a simple n-dash... I'd just use the keyboard dash/minus key. I guess I should have used the example of maybe a « instead. – Adam Douglass Jan 8 '09 at 18:11
feedback

3 Answers

up vote 7 down vote accepted

I just realized I could use a unicode javascript escape:

e.options[0] = new Option('\u2014 Select One \u2014', '');
link|improve this answer
Great conversion utility: rishida.net/scripts/uniview/conversion.php – Adam Douglass Jan 8 '09 at 18:15
Both this solution and Chetan's solution work. It just depends on which style you prefer. For me, I prefer to set the value once instead of going back and changing it afterwards like in Chetan's solution. – brian buck Sep 22 '09 at 14:13
feedback

You don't need to escape the entity - it works like this:

function selectOne() {
      var e = document.getElementById('test');
      e.options[0] = new Option('— Select One —', '');
}
link|improve this answer
True -- but I was thinking about ANY HTML entity... like a « – Adam Douglass Jan 8 '09 at 18:13
This does work for any HTML entity, though it can run into encoding problems. Your unicode escape sequences are probably the most portable solution. – Ben Blank Jan 8 '09 at 18:23
feedback

text property doesn't get unescaped, as it is meant to be taken literally. If you use innerHTML, the entities get converted to corresponding characters.

e.options[o].innerHTML = '&mdash; Select One &mdash;';
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.