Open In App

Hide elements in HTML using display property

The style display property is used to hide or show the content of HTML DOM by accessing the DOM element using JavaScript/jQuery

Syntax:

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

Steps to hide the element :

Example: In this example we will see the implementation of style.display property.






<!DOCTYPE html>
<html>
<head>
 
    <title>Javascript</title>
 
    <style type="text/css">
        .circle {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            float: left;
            margin-right: 50px;
        }       
        .rounded {
            width: 130px;
            height: 130px;
            border-radius: 25%;
            float: left;
            margin-right: 50px;
        }
        .square {
            width: 130px;
            height: 130px;
            border-radius: 0%;
            float: left;
            margin-right: 50px;
        }       
        #circle {
            background-color: #196F3D;
        }
        #rounded {
            background-color: #5DADE2;
        }       
        #square {
            background-color: #58D68D;
        }
    </style>
</head>
 
<body>
 
    <div class="circle" id="circle"></div>
    <div class="rounded" id="rounded"></div>
    <div class="square" id="square"></div>
 
    <script type="text/javascript">
        document.getElementById("circle").onclick = function() {
            document.getElementById("circle").style.display = "none";
        }
 
        document.getElementById("rounded").onclick = function() {
            document.getElementById("rounded").style.display = "none";
        }
 
        document.getElementById("square").onclick = function() {
            document.getElementById("square").style.display = "none";
        }
    </script>
</body>
</html>

Output:

Hide elements in HTML using display property

HTML is the foundation of webpages and is used for webpage development by structuring websites and web apps. You can learn HTML from the ground up by following this HTML Tutorial and HTML Examples.




Article Tags :