This:
$('#myDiv').val( $('#myDiv').val() + "\n")
is not adding a newline in IE. Is there a say to overcome this problem without actually appending <br>
instead of \n? I'm doing parsing later in the code and that is why I can't use <br>
instead of \n.