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