L
-Lost
For example:
var newlines = 'a\n\nb\n\nc';
alert(newlines);
Yet, if I get that *exact* same line from an XMLHttpRequest's
responseText, it is always alerted as:
a\n\nb\n\nc
....not...
a
b
c
Anyone know offhand if it is possible to get the alert to use the \n's
found in a responseText?
var newlines = 'a\n\nb\n\nc';
alert(newlines);
Yet, if I get that *exact* same line from an XMLHttpRequest's
responseText, it is always alerted as:
a\n\nb\n\nc
....not...
a
b
c
Anyone know offhand if it is possible to get the alert to use the \n's
found in a responseText?