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

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

java Extracting Zip file -

C# WinForm - loading screen -