I have about 9 blocks all with the hidden class in the span element, using my code below, I hover over 1 span block and it removed hidden from all 9 blocks... I just want it to remove from 1 block that I'm hovering on
JavaScript:
$(document).ready(function($) {
$('.image-link-hover').hover(function() {
$('span.hover-img').toggleClass('hidden');
});
});