Advertisement
timeshifter

Untitled

Jul 23rd, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.     $('.grow2').hover(function() {
  3.         $(this).stop().animate({fontSize:'24px'}, 300);
  4.     }, function() {
  5.         $(this).stop().animate({fontSize:'18px'}, 300);
  6.     });
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement