Other than no content between the div tags it's OK. I added some text between the tags and it was hidden. What is your issue?
<div id="ABname" style="visibility:hidden;position:absolute">Some Hidden Text</div>
DeZiner
Never be afraid to try something new.
Remember that amateurs built the Ark.
Professionals built the Titanic
Sorry - Missed the part about needing an explanation.
<div id="ABname" <-- Sets a block with an id that can be referenced in javascript or style tags.style= <-- sets a style to be applied "visibility:hidden;<-- This says make anything in this block hidden (not visible on the screen)position:absolute"<--- This sets the position of the block>Some Hidden Text</div> DeZiner
Never be afraid to try something new.
Remember that amateurs built the Ark.
Professionals built the Titanic
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.