Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. $('div').hover(
  4. function(){
  5. $(this).addClass('active');
  6.  
  7. },
  8. function(){
  9. $(this).removeClass('active');
  10.  
  11. }
  12. );
  13.  
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement