Body OnLoad()

J

JCO

What is the correct way to invoke two onload statements.
Currently it is as show:
.... alink="#FF0000" onLoad="focus(), "Carousel();" text="#FFFFFF" ...

The onLoad is called once with two function separated with a comma?

Thanks
 
R

Ronx

Should be:
onload="focus();Carousel();"
the functions are separated by a semi-colon ; .

Ron
 
Top