If I set the following string into a div how can I get the newline working at HTML?
{
"s":"Phrase1.\n\nPhrase2"
}
Thanks.
|
|||
|
|
|
Wrap preformatted text in <pre> tags:
Shows up as: { "s":"Phrase1.
Phrase2" }
Edit: Another option would be to set the div's style or class to behave the same as a pre tag:
|
|||||
|
.replace()method here lampcoder.com/… – Matei Mihai Aug 16 '12 at 11:59