Click to See Complete Forum and Search --> : OnLoad???
aloysiusf
03-14-2003, 02:17 AM
hello guys.
i tried to do this
<BODY ONLOAD="preloadImages(),hellowhatever()">
</BODY>
Its seems there's wrong somewhere, got error page. Any ideas?. Your help is highly appreciated. Thnks
Clownr
03-14-2003, 02:57 AM
hi,
it should be possible to do more functions in the body-onload tag, but god knows how..
what I do have is an alternative:
<html>
<script>
function beginning()
{
images()
blabla()
itsmejesus()
etcetc()
}
<script>
<body onLoad="beginning()">
</body>
</html>
it ain't perfect but i't's somethin'
C.
aloysiusf
03-14-2003, 03:09 AM
nice alternative, tried ya way, but too bad. its working.
aloysiusf
03-14-2003, 03:23 AM
Clownr, actually mine works. :D
manage to found wheres the error. even ya alternative way also works. Thanks anwyay
Clownr
03-14-2003, 04:32 AM
glad it works,
that's where this whole forum is about, right? :)