I'm having jQuery take some textarea content and insert it into an li.

I want it to visually retain the line breaks.

There must be a really simple way to do this...

link|improve this question

feedback

3 Answers

up vote 21 down vote accepted
function nl2br (str, is_xhtml) {   
var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>';    
return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1'+ breakTag +'$2');
}
link|improve this answer
Thank you this works perfectly. Odd how this isn't an official function of jQuery. – gbhall May 27 '10 at 8:03
cause jQuery is not meant to replace native javascript function like replace, it is focused on CSS selector chaining and easy access! maybe in future version;-) – aSeptik May 27 '10 at 8:08
Awesome. Helped me get past the problem with IE7 not supporting white-space: pre-wrap – Kevin Pauli Nov 10 '10 at 22:45
Wouldn't that regex mean if a line ends with ">" it wouldn't add the BR? I know in my HTML I use &gt; but user generated content doesn't work so well with that... – Dave Stein Nov 8 '11 at 19:58
feedback

you can simply do:

textAreaContent=textAreaContent.replace(/\n/g,"<br>");
link|improve this answer
Cheers, this kind of worked, except it would treat multiple line breaks as a single line break. – gbhall May 27 '10 at 8:02
1  
I've updated it and now it uses a regexp so if you want to treat multiple line breaks as a single br change the regexp with: /\n+/g – mck89 May 27 '10 at 8:05
Thank you. Hopefully someone will find your answer useful, but the function below works as well. I feel kind of bad that you're making more effort, but a function is more desirable. – gbhall May 27 '10 at 8:09
feedback

Put this in your code (preferably in a general js functions library):

String.prototype.nl2br = function()
{
    return this.replace(/\n/g, "<br />");
}

Usage:

var myString = "test\ntest2";

myString.nl2br();

creating a string prototype function allows you to use this on any string.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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