jQuery convert line breaks to br (nl2br equivalent)
you can simply do:
textAreaContent=textAreaContent.replace(/\n/g,"<br>");
demo: http://so.devilmaycode.it/jquery-convert-line-breaks-to-br-nl2br-equivalent
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');
}
- http://phpjs.org/functions/nl2br:480