hide the div css code example
Example 1: hide div elment
document.getElementById("payment_period").style.display = "none";
Example 2: hide a div
Hide/show this div
('#main').hide(); //to hide
// 2nd way, by injecting css using jquery
$("#main").css("display", "none");