In my application i have a html button where i need to hide few elements which are in div on button click and show the same elements on again click the same button i am able to hide the div but how can i again show the div elements.Belo is my html and jquery code
Html
<button type="button" id="btnsearch" style="background-color: white">Search</button>
<div id="Show"></div>
JQuery
$("#btnsearch").click(function () {
$("#Show").hide();
});