For example, to animate a box from the left, I can set "left" to the negative value of "width", and animate it to zero:
$('.box').each(function(){
$(this)
.css('left', $(this).width()*-1 )
.animate({'left':0},1000)
;
});
Is there a way to do this without the each function? THIS JQUERY IS TOO VERBOSE!