i want move up the object, delay 1000ms , then hide it,
i get the code:
$(\"#test\").animate({\"top\":\"-=80px\"},1500) .animate({\"top\":\"-=0
How about .delay() ?
.delay()
http://api.jquery.com/delay/
$("#test").animate({"top":"-=80px"},1500) .delay(1000) .animate({"opacity":"0"},500);