<button class="my_btn btn-success">Hide and Show</button></p>
<h1 id="hol">Hello World</h1>
$(".my_btn").on('click', function(event) {
$("#hol").hide();
});
How to make the same button hide and show the hol block? plz help, i am beginning developer)