I found this cool script that adds text from one textarea to another. I put an example here: http://www.freewebs.com/moreauctions/addtext.html The problem is, I need a line break after each text is added - to make a list: text1 text2 text3 Here is the <head> code: <script language="javascript" type="text/javascript"> var linebreak = "<br />" function addtext() { var newtext = document.myform.inputtext.value; document.myform.outputtext.value += bullet += newtext + linebreak; } </script> Code (markup): So what am I doing wrong?