Using jQuery's .load()
method I'm loading text into a textarea. Works fine in Chrome & FF. As always, IE just has to be different and won't display the line breaks.
I've tried white-space:pre-wrap
with no luck.
Any ideas?
My code:
$('#textarea').load('data.php');
The data.php simply queries a MySql database and prints the results.