Body OnLoad()

  • Thread starter Thread starter JCO
  • Start date Start date
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
 
Should be:
onload="focus();Carousel();"
the functions are separated by a semi-colon ; .

Ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top