Jump to content

Replace line break


johnrb87

Recommended Posts

Hi

 

I have a HTML form which contains a textarea field where the user can enter text.

 

When they click the form button I run the following javascript;

 

var description = document.getElementById('description').value;

 

I then pass this variable through a AJAX function, like

 

ajax('http://localhost/save.php?title='+title+'&description='+description+'');

 

This all works fine, apart from when you enter some text in the textarea field and use the return key.

 

My question is, how within

 

var description = document.getElementById('description').value;

 

can I tell it to replace line breaks with "<br>"

 

I know I need to add something like;

 

description.replace("\r","<br>")

 

but I can't figure out how to tie them together

Link to comment
https://forums.phpfreaks.com/topic/224385-replace-line-break/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.