It might be a silly question but if I have the following html code:
<textarea>This is /n not working</textarea>
It will not display the new line and instead it will output the new line character(/n).
But if I set the value of the textarea using javascript it will work
$('textarea').val("This is \n working");
So I don't understand how the \n character is actually working ?
Here is some fiddle with the above examples: http://jsfiddle.net/mfLt7/106/
Thanks,