Click to See Complete Forum and Search --> : Body tag


storeya
01-15-2003, 05:02 PM
Hi,

Can any one give an example for a line of code for a body tag which includes two functions(if thats the right phrase)

I want to include the 'onmouseover' function and the 'onload' function in the same body tag.

Thanks,

Alan

utahsaint
01-15-2003, 05:15 PM
Well it looks like you just wrote it... But just in case you didn't catch it here you go:

<body onLoad="doThis()" onMouseOver="anotherOne()" onMouseOut="somethingElse()">

I hope this helps.:D

storeya
01-16-2003, 03:25 PM
Thanks,

It worked a treat !

Alan