Format the text in JavaScript alert box

praveen picture praveen · Jul 4, 2013 · Viewed 59k times · Source

How can I format the text in a JavaScript alert box? I need a word in the text to be underlined.

Answer

vladkras picture vladkras · Jul 4, 2013

You can use only:

\b = Backspace 
\f = Form feed 
\n = New line 
\r = Carriage return 
\t = tab
\000 = octal character 
\x00 = hexadecimal character 
\u0000 = hexadecimal unicode character

So, you can insert different ASCII characters, but not format them (like italic or bold).

EDIT I also have to mention, that in fact alert acts like toString conversion, so including tags and/or styles is not possible.