vote up 0 vote down star

i have some content like this

var p =  

 i myself
 Abhimanyu Singh
 Yadav

when i m trying to insert into as innerHTML to some div the whole content appears in one line.i m using <pre> tag to avoid this problem.but need some appropriate solution.

flag

19% accept rate
Can I understand your question as "When inserting multi-line text via Javascript it displays in one line. How can I insert <br> tags instead?" – deceze Aug 10 at 5:50
Can you please post the code for this? – adamantium Aug 10 at 5:50
I don't think its related to question formatting. – adamantium Aug 10 at 5:52

3 Answers

vote up 1 vote down
var p = "i myself<br />Abhimanyu Singh<br />Yadav";

updated to make andrew happy. a still non-semantic answer that is more semantic.

link|flag
Totally non-semantic. A terrible idea. It will style as a paragraph break instead of a line-break. – Andrew Moore Aug 10 at 5:58
yes, it appears this OP is worried about semantics, first off, as he is trying to insert line breaks in completely random places. when a user asks something ridiculous like this, i give an answer that works. if he wants to replace the <p> tags w/<br /> tags, whatever – Jason Aug 10 at 6:23
vote up 0 vote down

The following will do just fine:

function nl2br(str) { return str.replace(/\n/g, '<br />'); }

Then you can just call it on whichever variable you want, as such:

var p = "I'm a multiline\nString. Watch\nme fly!";
document.getElementById('hello').innerHTML = nl2br(p);
link|flag
vote up 4 vote down

You can replace the new line characters with html BR elements (<br />):

document.getElementById('myDiv').innerHTML = p.replace(/\n/g, '<br />');
link|flag

Your Answer

Get an OpenID
or

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