This is a new one on me and I develop with Firefox daily, but it MIGHT
be that you've declared an xhtml document and don't have the closing /
on the input tag, as:
<input type="button" value="perform" name="perform"
onClick="window.location.reload('call_log.php')"/>
In xhtml, all tags must be closed, and those that don't have a
separate closing tag (input, img, etc.), do so with that ending slash.Also, window.location.reload() takes true or false (defaults to true, I think?) as a parameter, not an URL. Do you mean window.location.replace() or window.location.assign()? Either way, I've had trouble with either of those working on Safari and have ended up reverting to the older window.location.href="<url>" method. --- In [email protected], imran shafiq <[EMAIL PROTECTED]> wrote: > > Following HTML code running fine on IE5, IE6 but error on Firefox. > ---> <input type="button" value="perform" name="perform" onClick="window.location.reload('call_log.php')"> > > Error: Unexpected end of XML sources > > > --------------------------------- > Yahoo! Mail is the world's favourite email. Don't settle for less, sign up for your freeaccount today. > > [Non-text portions of this message have been removed] >
