hide div html 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: hide element using css

#tinynav1
{
  display:none
}

Example 3: how to hide div in html

document.getElementById('elementName').hide();

Example 4: hide div elment

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

Example 5: 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;

Tags:

Css Example