hidden div html code example
Example 1: hidden div css
display:none;
visibility:hidden;
Example 2: how to hide div in html
document.getElementById('elementName').hide();
Example 3: hide div elment
document.getElementById("payment_period").style.display = "none";
Example 4: html hidden
<!-- stops an element from rendering, but still loads it to memory-->
<p>this will show</p>
<p hidden>Thill will not show</p>
Example 5: hide a div
<div id="main">
<p> Hide/show this div </p>
</div>
('#main').hide();
$("#main").css("display", "none");