Forum Moderators: open
<script src="http://www.blah.com/files/header.txt"></script>
The header.txt file has the following data:
document.writeln('blah blah');
It works correctly BUT, if I have carriage returns in the data file like so:
document.writeln('blah
blah
blah
blah');
tt will not work. Any ideas of a better way to do this? A different javascript?