Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery: keyup(): Update div with content from text area... line breaks?

I have posted a working version here: http://jsfiddle.net/JV2qW/2/

I have a textarea that updates (on keyup()) a div with the text that is being entered. Everything is working as it should, except the line breaks are not being recognized.

the html:

<p>enter text</p>
<textarea id='text'></textarea>
<div id='target'></div>

and the jquery:

$('#text').keyup(function(){
      var keyed = $(this).val();
      $("#target").html(keyed);
 });

Any thoughts on how to get the \n translated to <br/> or <p> tags?

many thanks.

like image 650
superUntitled Avatar asked Jun 01 '11 15:06

superUntitled


2 Answers

You can replace any newlines with <br/>

$('#text').keyup(function() {
    var keyed = $(this).val().replace(/\n/g, '<br/>');
    $("#target").html(keyed);
});

You can look into the MDC article about RegEx if you want to replace other things.

https://developer.mozilla.org/en/JavaScript/Guide/Regular_Expressions

like image 132
Robert Avatar answered Nov 09 '22 16:11

Robert


http://jsfiddle.net/omnosis/8XL7n/

replace the '\n' to '<br />'

like image 37
Gergely Fehérvári Avatar answered Nov 09 '22 16:11

Gergely Fehérvári