I am using jQuery 1.4.1 .
a = $('#hello')
.animate({height: '100px'});
a.hide();
Above code does not hide the element. I know the solution. The solution is
a.animate({height: 'hide'});
However I am interested in finding out what does animate do to the elements which makes them not respond to hide. I looked into the source code but could not find an answer.
Does anyone know?