We can show and hide HTML elements with the show()and hide methods in jquery. A simple example is as follows
Example
$("#hide").click(function(){
$("p").hide();
});
$("#show").click(function(){
$("p").show();
});
Similarly, you can apply it to any html element such as a button.
Leave a comment