Is \\n
the universal newline character sequence in Javascript for all platforms? If not, how do I determine the character for the current environment?
I
Email link function i use "%0D%0A"
function sendMail() {
var bodydata="Before "+ "%0D%0A";
bodydata+="After"
var MailMSG = "mailto:aaa@sss.com"
+ "?cc=07@sss.com"
+ "&subject=subject"
+ "&body=" + bodydata;
window.location.href = MailMSG;
}
[HTML]
Contact Us