vote up 1 vote down star

I would like to use replace the value of a submit button with "Loading& hellip;" (without spaces).

The problem is that when I click the button I still see "& hellip;" instead of three dots.

Here's my code:

$("#myid").val("Loading& hellip;");

Should I enter the ellipsis directly from keybord in the code above? Is it safe with UTF-8?

flag

1 Answer

vote up 6 vote down check

val() or value sets a plain text value. … is HTML, not text; you could use it in innerHTML or .html(), but not in a form field value.

If you want to include U+2026 HORIZONTAL ELLIPSIS in a JavaScript string where the encoding is not guaranteed, you could escape it to:

'Loading\u2026'

Should I enter the ellipsis directly from keybord in the code above? Is it safe with UTF-8?

Yes.

However, the ellipsis has a compatibility decomposition into three period characters; it is really only there for backwards compatibility with older character sets. These days the idea is just to use three periods, and let the font deal with coming up with combined glyphs if necessary. In any case, there is little to no visual difference between three periods and an ellipsis in most (proportional) fonts.

link|flag

Your Answer

Get an OpenID
or

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