how to use the css display property to hide the p element in javascript code example
Example 1: display none js
document.getElementById("myDIV").style.display = "none";
Example 2: 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");