Jquery Show and Hide Methods
by Vickram H[ Edit ] 2012-09-05 15:40:58
Jquery Show and Hide Methods
Demonstrates jQuery hide() and show() methods:
Sample Code:
$(document).ready(function(){
$("#hide").click(function(){
$("p").hide();
});
$("#show").click(function(){
$("p").show();
});
});