View Single Post
Old 01-14-2013, 10:57 AM   PM User | #1
Scott R
New Coder

 
Join Date: May 2012
Location: Colorado SPrings
Posts: 18
Thanks: 2
Thanked 3 Times in 3 Posts
Scott R is an unknown quantity at this point
Wordpress post img hover effect.

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");
	});
});
Scott R is offline   Reply With Quote