I have a div that should be shown only when the user clicks the show button
$(\"div.toshow\").show();
I have written in the body
You can use jQuery to change the CSS styles of 'toshow' class adding "display: none". for example
$(function(){ $('.toshow').css("display", "none"); });