Click to See Complete Forum and Search --> : How can I load several javascript functions at same time?


anselmo69
09-20-2004, 10:09 AM
Hi,

How can I load several javascript functions at same time?

Do i need to create a new function that loads all the functions i whant to load in the html?

Can anyone show me how to do it?

Tanks

Khalid Ali
09-20-2004, 10:15 AM
<script type="text/javascript">
function one(){}
function two(){}
function three(){}

function init(){
one();
two();
three();
}
</script>

<body onload="init();">




:D something like that may work for you..

anselmo69
09-20-2004, 10:31 AM
Thank you...