pegasus975

Untitled

Jun 17th, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(){
  2.    
  3.     $('div').mouseenter(function(){
  4.        $('div').fadeTo('fast', 1);
  5.        
  6.        
  7.     });
  8.    $('div').mouseleave(function(){
  9.        $('div').fadeTo('fast', 0.5);
  10.        
  11.    });
  12.    
  13.    
  14.    
  15. });
Advertisement
Add Comment
Please, Sign In to add comment