Forum Moderators: open
My problem is that I'm trying to insert line breaks at key points of the email and I have been unsuccessful in doing so.
I have tried the \n and <br> to no avail.
The part where I'm specifically trying to do this is below.
document.add_user.encoding="html";
document.add_user.method="get";
document.add_user.action=firstline+secondline+thirdline+fourthline+fifthline+sixthline+seventhline+eigthline+ninthline+tenthline;
I have variables declared with the email message for each of the variables listed above. I have tried the line breaks both in the variables themselves and in the .action call, concatenating with the variables.
CAn you insert HTML code into Javascript?
Thanks in advance.