/ Published in: JavaScript
Expand |
Embed | Plain Text
$('.project').hover( function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); } );
You need to login to post a comment.
coryschadt on 04/06/11
1 person have marked this snippet as a favorite
$('.project').hover( function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); } );
You need to login to post a comment.