JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
            $("div").mouseover(function(){
                $(this).append('mouseover.');
            }).mouseenter(function(){
                $(this).append('mouseenter');
            });
        });
    
  
  
    
     
adsf