I’m animating the height of element:
// Animate height of items
$j(".item .row").toggle(function(){
$j(this).animate({height:500},200);
},function(){
$j(this).animate({height:300},200);
});
I was wondering how to add easing to it? (e.g. the animation slowing down towards the end?)
Define easing, the following way
You can add other easing effects also, by including the Easing Plugin.
In your case, it would be something like