Javascripts are in script.js file which I have called in the xhtml file.

But it is throwing error at line where I have calling onpageload function saying " object expected.

However, if I have the scripts on same XHTML file, it is working fine.

link|improve this question
Could you complete (edit) your own question with the xtml part where you declare the javascript ? And where you are using it ? – VonC Dec 3 '08 at 7:26
feedback

2 Answers

As specified in HTML4 specifications for Scripts, do you declare your external javascript like this ?

<script src="external.js" type="text/javascript"></script>

IE (but other browers may too) requires that you open and close the script tag.
The end tag of the `script' element is not optional

link|improve this answer
feedback

make sure you call your scripts after the page is fully loaded - use document.onload event handler or

<body onload="">
link|improve this answer
feedback

Your Answer

 
or
required, but never shown