Click to See Complete Forum and Search --> : Lots of stuff to load. :(


Burrow
04-11-2003, 07:24 PM
Okay, currently.

I need to load about 12 different javascripts from alternate sources. Now what I'm wondering is, can I just create one javascript that loads all twelve of those at the same time. It's not really important it would just make my pages look cleaner.

Thanks.

Jona
04-11-2003, 07:55 PM
I think I know what you mean:

function start(){
functionName1();
functionName2();
functionName3();
functionName4();
//etc...
}

<body onload="start();">

Burrow
04-12-2003, 04:24 PM
Yep,

That looks like what I'm looking for.

Thanks, for the help.