Skip to content

Instantly share code, notes, and snippets.

@thirdj
Created December 9, 2013 05:22
Show Gist options
  • Save thirdj/7867692 to your computer and use it in GitHub Desktop.
Save thirdj/7867692 to your computer and use it in GitHub Desktop.
How to replace \n with <br /> in JavaScript? http://jsfiddle.net/ZmW45/
$('textarea').val().replace(/\n/g, '<br />');
@Moamen-Ashour
Copy link

mom
wow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment