jquery animate after animation complete code example
Example 1: how to run function after animation complete jquery
$('#header .pointerarrow').animate(
{ left: linksstart + breedte },
400, function() {
// Animation complete.
});
Example 2: jquery change position animate
$("#Friends").animate({
top: "-=30px",
}, duration );