I lost a neat widget provided by my isp after they did a page edit. Turns out the tool they used reformatted the text and added a newline in the middle of the widget's window open definition. "Javascript" is defined:
<script type="text/javascript">
The error(?) is here:
function opensessionwin(whichone) {
remote =
window.open("","sessionwin","width=240,height=400,toolbar=0,location=0,directories=0,status=0,menubar=0[EXTRA NEWLINE HERE]
,scrollbars=1,resizable=1");
Question is, is newline in code supposed to be ignored as in html, or is it interpreted as, say, bash would? (BTW, "{" is matched by "}" at end of declaration.)
Not interested in writing js myself, but don't want to send in an erroneous fix request.
thank you