hi there i have this code, and its not working , I dont understand why
$('#thumbs > li').mouseenter(function() {
$(this).find("div").fadeIn();
}).mouseleave(function(){
$(this).find("div").fadeOut();
});
here is the whole thing http://jsfiddle.net/8Q24N/
You may want this
Wrap the code inside
$(document).ready(function(){...})DEMO.