jquery - .prepend() with .show(effect) issue -
creating .prepend() function. prepends , shows div correct - should. however, .show() effect (i.e. scale) isn't executing. possible? know there's limitations .append() , .prepend().
and yes, i'm pointing jquery's ui script.
$('<div class="load-success" style=display:none"></div>').prependto('.body-img-deets').show("scale", {}, 900);
missing " before display: none ? anyway, try hiding , showing it.
$('<div class="load-success" />').prependto('.body-img-deets') .hide() .show("scale", {}, 900);
Comments
Post a Comment