Forum Moderators: open
.nub and .cover to bounce at the same time, triggered by hovering .nub? $(document).ready(function() {
//Full Box Sliding (Hidden to Visible)
$('.nub').hover(function(){
$(this).stop().animate({left:'200px'},{queue:false,duration:160});
$('.cover').stop().animate({left:'200px'},{queue:false,duration:160});
}, function() {
$(this).stop().animate({left:'250px'},{queue:false,duration:160});
$('.cover').stop().animate({left:'250px'},{queue:false,duration:160});
});
});