[Solved] how to hide a tag? [closed]


This is the best I can do without knowing your code:

HTML:

<h4 id="myH4">Hello World</h4>

Javascript:

document.getElementById("myH4").style.display="none";

or

document.getElementById("myH4").style.visibility="hidden";

7

solved how to hide a

tag? [closed]