Forum : How to make elements invisible
Brief description  about Online courses   join in Online courses
View prabeen  patra 's Profile

How to make elements invisible

How to make elements invisible
Asked by prabeen patra | Mar 22, 2010 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
Hi Prabeen,
Change the "visibility" attribute of the style object associated with your element. Remember that a hidden element still takes up space, use "display" to make the space disappear as well.

if ( x == y) {
myElement.style.visibility = 'visible';
} else {
myElement.style.visibility = 'hidden';
}
Mar 22, 2010