Jquery Show and Hide Methods

by Vickram H 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();
});
});
944
like
0
dislike
0
mail
flag

You must LOGIN to add comments