How do I have to set css position to animate box(in) that is in the box(out) which is not equal to box(in) height, from down to up.
What I am trying with animating is:
$('#box-out').hover(function(){
$('#box-in').animate({height: '400px'},2000);
});
It expands downwards as hover right? I just want it to expand upwards. To be able to do that I have to set push it on bottom of box(out).
How do I do that? Please check: http://jsfiddle.net/DxEMT/