Jquery JavaScript DHTML


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

header 1