Hi there, I'm having trouble with this code and I can't figure out why it's not working.
$('#thumbs > li').mouseenter(function() {
$(this).find("div").fadeIn();
}).mouseleave(function(){
$(this).find("div").fadeOut();
});
You can find the complete code here.