The first <div> move down animation works great. I want second <div> to slide up after a delay of 500 ms. It is not working right. Does anyone have any idea why?
This works great with out delay:
$('#first-div').animate({top:"640px"},3000);
$('#second-div').slideDown("1000");
but i want to delay the second <div> to slide up after first <div> moves down.
but it's not working under .delay()
$('#first-div').animate({top:"640px"},3000);
$('#second-div').delay(5000).slideup("1000");
The complete script I tried using is:
$(document).ready(function() {
$('#first-div').animate({top:"640px"},3000);
$('#second-div').delay(5000).slideup("1000");
});
The second <div> slide up after delay is not working! what did i miss?
slideDown.) – user166390 Jan 10 at 23:09slideupwill result in an error.) – user166390 Jan 10 at 23:14