JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
                
            $("li").hover(
              function () {
                $(this).append($("*"));
              }, 
              function () {
                $(this).find("span:last").remove();
              }
            );
        });
    
  
  
    
         

                
  • A

  •             
  • B

  •             
  • C

  •             
  • D

  •