I am trying to get each post to hover individually not all together. This is what I have so far. How do I get it to select each individual post not all of them?
source =
http://www.ScottReinmuth.com/portfolio
Code:
$(document).ready(function(){
$(".portfolio-thumb").mouseenter(function(){
$(".portfolio-hover").fadeIn("slow");
});
$(".portfolio-thumb").mouseleave(function(){
$(".portfolio-hover").fadeOut("slow");
});
});