Forum Moderators: open

Message Too Old, No Replies

body onload

Is there an alternative?

         

gleddy

5:48 am on Feb 7, 2006 (gmt 0)

10+ Year Member



I am looking for info on a body="onload" alternative to triggering functions on my webpages.

My problems is when certain adservers don't fully load then the functions will not fire seeing the the page hasn't completed loading.

thanks for any advice.

cheers.

Dijkgraaf

5:58 am on Feb 7, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Well you could just have the following at any point within the body.

<script type="text/javascript>
callthisfunction();
</script>

Replacing callthisfunction with the function you want to call.
As soon as that loads it will trigger the function,
so make sure that it is after any objects in the page that it references.