Search code examples
javascriptjqueryline-breaks

jQuery convert line breaks to br (nl2br equivalent)


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...


Solution

  • 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');
    }