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


stacy
02-04-2003, 07:21 PM
Could somebody please tell me the difference between the body and the body tag. I am clueless.:confused:

CyCo
02-04-2003, 07:27 PM
<body> <-- opening body tag



<!-- The contents of the body -->



</body> <-- closing body tag

stacy
02-04-2003, 07:31 PM
How would i do this:

<!-- STEP TWO: Insert the onLoad event handler into your BODY tag -->

<BODY onLoad="mainTextScroller()">
I cna insert the head and insert into the body, but I don't get this.

zebedeus
02-04-2003, 08:09 PM
<BODY onLoad="mainTextScroller()">
should be correct.
But usually the script part of the text scroller goes into the body and not into the head.
So: the onLoad in the body TAG
and the script IN the body

I hope this is what could fix it...?

Zebedeus

stacy
02-05-2003, 07:07 AM
I have a scrolling message now. I think I got it now. Thanks.:D