Use prependTo()
and go the other way instead of prepend()
:
$("<li>Addition li</li>").effect("highlight", {}, 1000).prependTo("#foo");
or you may want to prepend first:
$("<li>Addition li</li>").prependTo("#foo").effect("highlight", {}, 1000);
cletus
2009-12-02 23:59:16