how to hide a div in html code example
Example 1: javascript hide div
// javascript
<script>
document.getElementById("id").style.display = "none";
document.getElementById("id").style.display = "block";
document.getElementById("id").style.display = "";
</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: css hiddden
.classname {
visibility: hidden;
}
Example 3: hide element using css
#tinynav1
{
display:none
}
Example 4: how hide in html
#elementID{
display:none;
}
Example 5: how to hide div in html
document.getElementById('elementName').hide();
Example 6: hide div elment
document.getElementById("payment_period").style.display = "none";