$(this).children
次のコードで動作しないのはなぜですか?
$('.home-box').hover(function() {
$(this).children('home-box-caption a').animate({
bottom: -12,
}, 200);
}, function(){
$(this).children('home-box-caption a').animate({
bottom: -24,
}, 200);
});
.home-box {
background: url(images/home_box_bg.png) no-repeat 0 0;
cursor: pointer;
float: left;
margin: 25px 13px 25px 0;
position: relative;
width: 230px;
height: 160px;
}
ホバリングして.home.box
も何も起こりません。