show()
A Sniper method to show hidden elements
$(selector).show(delay,callback);$("#mydiv").show(); //this will show the selected hidden element$("#mydiv").show(3000); //this will wait for 3 secs before showing the hidden the elementShow with a callback function
$("button").click(function(){
$("p").show(5000, function(){
alert("The hidden paragraph is now showing");
});
});Hide multiple elements
$("ul li*").show(); //this will show all the hidden list items in the ulLast updated