I made with some help some Style to move a Text in if Mouse is over. My Problem is that I can’t separate the moves. If I am over of any Box than all Boxes get the effect.
$(document).ready(function(){
$('.up-down').mouseover(function(){
$('.default').stop().animate({
height: 200
}, 200);
}).mouseout(function(){
$('.default').stop().animate({
height: 240
}, 200)
})
});
To see is here: http://jsfiddle.net/snHhN/
You have to select the child of the currently hovered element:
DEMO