html hidden div code example
Example 1: hidden div css
display:none; /* remove the element from page and DOM. */
visibility:hidden; /* remove only from page. */
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
this will show
Thill will not show
Example 5: hide a div
Hide/show this div
('#main').hide(); //to hide
// 2nd way, by injecting css using jquery
$("#main").css("display", "none");