What's 200? in em? px? use a measurement. '200px'.
You didn't animate the height as well as the width: {width: '200px', height: '200px'}
I dropped the .active css rule for auto height. The animation needs to take care of that.
code:
$(document).delegate('.rewards-process li:not(.active)', 'click', function(e)
{
var toActive = $(this);
$('.rewards-process li.active').addClass('transition');
$('.rewards-process li.active').animate({
width:'90px'
, height: '90px'},1000,function() {
$('.rewards-process li.active').removeClass('active').removeClass('transition');
});
$(toActive).animate({
width:'200px'
, height: '200px'},300,function(){
//animation complete
$(toActive).addClass('active')
});
});
I sometimes use this hack for figuring out a dynamic height:
function getElementHeight(e, width) {
$("body").append("<div id='test' style='width:" + width + "'>" + e.html() + "</div>").hide();
var h = e.outerHeight();
e.remove();
return h;
}
You need to make sure the CSS doesn't mess this up.
Basically you create the element with the final width, calculate its height and then remove it. This function will return a number, you'll need to add px and you can use it in your animation.
But you don't really need this. Height animates automatically for you, your CSS rules just disabled it. For example, this fiddle will work just fine.