vote up 2 vote down star
1

I have HTML output similar to this:

<select>
<option value="1">Item1 </option>
</select>

How do I use JavaScript to get the value "Item1 " (with the space) rather than "Item1"?

In Internet Explorer all the properties I've tried, e.g. text, innerHTML, data, nodeValue return "Item1" instead of "Item1 ".

Interestingly in Firefox, textContent and innerHTML return the untruncated value whereas text returns the truncated value.

flag

2 Answers

vote up 2 vote down check

Sorry, IE's parser indeed throws away trailing spaces in <option>. Curiously, if you assign a string with trailing spaces to innerHTML IE manages to remember one of them. Probably best not relied on.

Normally if you want visible trailing spaces (in any browser) you have to use a non-breaking-space character (eg. &#160; character reference).

link|flag
That's annoying. We had tried to avoid truncation/trimming of data in the system but this means we'll have to rethink that approach. – tjrobinson Feb 2 at 14:03
Well the actual data should be in the 'value' attribute of course - the 'text' content is only for show. – bobince Feb 2 at 14:24
Good point, though easier said than done in this particular case! – tjrobinson Feb 2 at 15:04
vote up 0 vote down

You should never rely on spacing being interpreted literally. Maybe your output should be rendered as : <option value="1">Item1&nbsp;</option>

P.S.: It says HTML is ignored within a code block, yet my entity gets escaped here. (Markdown)

link|flag
To expand on this concept, the text of an option element was never meant to be used as data -- that's what the value attribute is for. It would seem that if you're using the text for any logic then you're possibly using the value attribute in an incorrect manner. – ken Oct 27 at 21:52
I agree, very succinctly put. – Cerebrus Nov 2 at 13:15

Your Answer

Get an OpenID
or

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