PDA

View Full Version : 2 onload tags in the body tag


Frazmand
07-26-2006, 08:55 PM
I want to run 2 javascripts but both have onload tags that need to be put in the body tag. How can I do this so they can work in harmony?

jscheuer1
07-26-2006, 08:59 PM
<body onload="dothis();dothat();">

Frazmand
07-26-2006, 09:01 PM
Thanks

Frazmand
07-26-2006, 09:04 PM
Thanks a lot.