Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q688 Where do I put my JavaScript code to make sure that it is executed only after the HTML page is completely loaded?

irt.org | Knowledge Base | JavaScript | General | Q688 [ previous next ]

Q688 Where do I put my JavaScript code to make sure that it is executed only after the HTML page is completely loaded?

In a function that is called by an onLoad event handler:

<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript"><!--
function functionName() {
// include your code here
}
//--><SCRIPT>
</HEAD>

<BODY onLoad="functionName()">
...
</BODY>
</HTML>

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.