Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I set the following string into a div how can I get the newline working at HTML?

{
"s":"Phrase1.\n\nPhrase2"
}

Thanks.

share|improve this question
@user285677 Few people will want to help you if you don't accept valid answers to your questions. – Phrogz Jan 2 '11 at 20:03
possible duplicate of display mysql newline in HTML – Tomalak Jan 2 '11 at 20:07
You can see an example of using .replace() method here lampcoder.com/… – Matei Mihai Aug 16 '12 at 11:59

3 Answers

up vote 1 down vote accepted
foo.innerHTML = myObj.s.replace(/\n/g,"<br>");
share|improve this answer
changed to foo.innerHTML = myObj.s.replace(/\n/g,"<br />"); – user285677 Jan 2 '11 at 20:17
{"s", "phrase1.<br /><br />"phrase2"}
share|improve this answer

Wrap preformatted text in <pre> tags:

<pre>{ "s":"Phrase1.\n\nPhrase2" }</pre>

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:

<div style="whitespace:pre"/>
share|improve this answer
Given that the subject and tag includes "JSON" I assume the OP is accessing an s property of a JSON return value and setting text to that value. – Phrogz Jan 2 '11 at 20:04
Well, it is a json-formatted string. It may have nothing to do with Javascript JSON object. Even if it does, you could still wrap the contents in a <pre> tag. – Ed Marty Jan 3 '11 at 0:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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