JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
                $("#hideHandler").click(function () {
                      $("span:first-child").hide("fast", function () {
                        $(this).prev().hide("show", arguments.callee); 
                      });
                });
                $("#showHandler").click(function () {
                      $("span").show(6000);
                });
        });
    
  
  
    
          Hide
          Show
        
          

            A
            B 
            C 
            D 
            E 
            F 
            G 
            H