animate not playing well with hide
I am using jQuery edge.
- $(function(){
- $('#lab')
- .animate({height: '200px'})
- .hide();
- });
stylehsheet
- #lab{ background: yellow; }
After the animate expands height the element stays there and never hides. Tested with all non-IE browsers.
Am I missing something or is it a bug?