Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleSyntax
<script type="text/javascript">
  Event.observe(window, 'load', function() {
    Astun.JS.IncludeJS(NAME, CALLBACKFUNCTION);
  });
</script>
Code Block
titleLogger Example
<script type="text/javascript">
	Event.observe( window, 'load', function(){
		Astun.JS.IncludeJS('logger',pageLoad);
	});

 

Where CALLBACKFUNCTION is the name of a function to call once the scripts have finished loading and NAME is a string must be one of the following:

...