Nov 6, 2000 #1 kimera MIS Nov 6, 2000 15 CH What's the correct prog. text to start 2 or more functions onLoad of the HTML-Body? is this correct? OnLoad="test(); go(); bla()" thanks
What's the correct prog. text to start 2 or more functions onLoad of the HTML-Body? is this correct? OnLoad="test(); go(); bla()" thanks
Nov 6, 2000 #2 jaredn Programmer Sep 1, 1999 1,506 US that should work. I prefer this technique: onLoad="initFuncs();" function initFuncs() { start(); go(); blah(); } Upvote 0 Downvote
that should work. I prefer this technique: onLoad="initFuncs();" function initFuncs() { start(); go(); blah(); }