not animating problem
not animating problem
Hi, I got ajax embedded in this div
- <div id="regaddcar" style="display:none;"></div>
When it's added it does something like this
- $("#regaddcar").html(data).addClass('ui-widget ui-widget-content');
- $("#regaddcar").fadeIn();
which works,
but on fading out, it does not animate, it only disappears
- $('#cancel').live('click',function()
- {
- $('#regaddcar').fadeOut().removeAttr("class").html('');
- });
Did I missed something?
Thanks