Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. //on hover addClass, then remove class
  2. $(document).ready(function(){
  3.  
  4. $('div' ).hover(
  5. function(){
  6. $(this).addClass('active');
  7. },
  8. function(){
  9. $(this).removeClass('active');
  10. }
  11. );
  12.  
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement