Show Hide Div Javascript Code Example


Example 1: javascript hide div


// javascript
<script>
document.getElementById("id").style.display = "none"; //hide
document.getElementById("id").style.display = "block"; //show
document.getElementById("id").style.display = ""; //show
</script>

// html
<html>
<div id="id" style="display:none">
<div id="id" style="display:block">
</html>

// jquery
<script>
$("#id").hide();
$("#id").show();
</script>

Example 2: how to show hide div in html javascript


<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#myDIV
{
width: 100%;
padding: 50px 0;
text-align: center;
background-color: lightblue;
margin-top: 20px;
}
</style>
</head>
<body>

<p>Click the "Try it" button to toggle between hiding and showing the DIV element:</p>

<button onclick="myFunction()">Try it</button>

<div id="myDIV">
This is my DIV element.
</div>

<p><b>Note:</b> The element will not take up any space when the display property set to "none".</p>

<script>
function myFunction()
{
var x = document.getElementById("myDIV");
if (x.style.display === "none")
{
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>

</body>
</html>

Example 3: js hide div


//If you have jquery, you can use the following method:
$("#mydiv").hide(); //hides div.
$("#mydiv").show(); //shows div.
//If you don't have jquery...
//search up the following: html how to add jquery

Example 4: javascript hide show div


<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function()
{
$("#hide").click(function(){
$("#1").hide();
$("#2").show();
});
$("#show").click(function()
{
$("#1").show();
$("#2").hide();
});
});
</script>
</head>
<body>

<p id="1">Area 1</p>
<p id="2" style="display: none;">Second area</p>

<button id="show">Area 1</button>
<button id="hide">Second Area</button>

</body>
</html>

Example 5: javascript hide a div


<div id="main"> 
<p> Hide/show this div </p>
</div>

('#main').hide(); //to hide

// 2nd way, by injecting css using jquery
$("#main").css("display", "none");

Example 6: toggle element javascript


document.querySelector("#test").hidden = true;
document.querySelector("#test").hidden = false;

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable