Re: How to write data in file with new line on Mozilla 2
What language is this? I'm a bit baffled - it seemed like this isn't a usual JS.
Anyway, I'm not sure for a fix, but try to change this part:
[code:182ggpzc]
stream.write(sText,sText.length);
[/code:182ggpzc]
...with:
[code:182ggpzc]
stream.write(sText+'<br>',sText.length);
[/code:182ggpzc]
If nothing works, please provide a link to your page.