jQuery/hide()

解説 指定要素を非表示にする

.hide()

.hide(speed)

.hide(speed, callback)

sample1

sample1p

sample1code
$(function(){
  $("#sample1p").click(function(){
	$(this).hide();
  });
 });
sample2
sample2
sample2code
$("#sample2Btn").click(function () {
  $("#sample2Div span:last-child").hide("normal", function () {
    $(this).prev().hide("normal", arguments.callee);
  });
});
sample3
sample3code
$(function(){
  $(".sample3Box").click(function() {
    $(this).hide(1000);
  });
});