I am having a slight issue with my mouse hover function on my images. When you hover over one image it's causing the hover over state to be active with all the images. [click here][1] Does anyone know where i have gone wrong??
//javascript
$(".tint").hover(function(){
$('.hover-hide').toggleClass('hidden');
});
//HTML
<figure class="tint">
<div class="hover-content hover-hide hidden">
<a class="roll-over" href="#"><img class="img_hover" src="img/home-hover-bg.png" alt="hover"/></a>
</div>
</figure>
figure
s have thetint
class? – Kevin Boucher$(this).parent().find('.hover-hide').toggleClass('hidden')
– Ian Brindley