Answers for "how to hide a content in jquery"

3

jquery to 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");
Posted by: Guest on July-17-2020

Code answers related to "how to hide a content in jquery"

Browse Popular Code Answers by Language