Jump to content

Showing/Hiding parts of layout


ReVeR

Recommended Posts

the easiest way for something like this
<div id="hideme">HIde me test </div>
is
[code]
// hidding div
document.getElementById('hideme').style.display = "none";

//showing div
document.getElementById('hideme').style.display = "block";
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.