Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OnLoad

Status
Not open for further replies.

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
 
that should work. I prefer this technique:

onLoad="initFuncs();"

function initFuncs()
{
start();
go();
blah();
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top