Monday, March 4, 2013

Hide Show Toggle


$(document).ready(function(){
  $("#hide").click(function(){
    $("p").hide();
  });
  $("#show").click(function(){
    $("p").show();
  });
});

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.