Jquery JavaScript DHTML


  
    
    
        $(document).ready(function(){
            $("div").mouseover(function(){
                $(this).append('mouseover.');
            }).mouseleave(function(){
                $(this).append('mouseleave');
            });
        });
    
  
  
    
     
adsf