/ Published in: JavaScript
URL: http://www.malloybrothers.com/music-videos/
Expand |
Embed | Plain Text
$(document).ready(function() { $(".photoItem").hover(function() { $(this).find("img").stop().fadeTo(300, 0.7 , function() { }); } , function() { //on hover out... $(".photoItem img").fadeTo(300, 1); }); });
You need to login to post a comment.
