I would like to start a textarea with inside a text that starts some line under the first line. Doing something like:
var myText = '\r \r \r HELLO';
doesn’t work: HELLO is written on the first line, while
var myText = 'HELLO \r \r \r HELLO2';
puts correctly HELLO2 after HELLO. This means that \r is correct, but it doesn’t work at the beginning of the textarea.
Any suggestions?
Have you tried to put space or
before the “\r”?