My issue here is that I have a grid of images and titles for these images which all have the same class.
So the HTML for each image and title in the grid is
<a href="">
<div class="front-menu-image">
<img src="" width="224" height="224"/>
</div>
<div class="front-menu-title">TITLE</div>
</a>
I have tried:
jQuery(document).ready(function($){
jQuery('.front-menu-image').hover(
function () {
jQuery(.front-menu-title).animate({height:'50'});
},
function () {
jQuery(.front-menu-title).animate({height:'25'});
}
);
});
But obviously this caused all in the grid to be animated, when I just want the one in question to be affected.