Computer >> Computer tutorials >  >> Programming >> Javascript

How to set whether an element should be visible in JavaScript?


Use the visibility property in JavaScript to hide or show an element.

Example

You can try to run the following code to learn how to work with visibility property −

<!DOCTYPE html>
<html>
   <body>
      <p id = "pid">Demo Text</p>
      <button type = "button" onclick = "displayHide()"> Hide </button>
      <button type = "button" onclick = "displayShow()"> Show </button>
      <script>
         function displayHide() {
            document.getElementById("pid").style.visibility = "hidden";
         }

         function displayShow() {
            document.getElementById("pid").style.visibility = "visible";
         }
      </script>
   </body>
</html>