Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

143
Views
How do I slideUp with animate as a function so that code waits until both events are done

I understand that in order for an even to happen 'after' a slideUp the following callback code can be used:

$('#something').slideUp('fast', function() {
   ... stuff to do after the slide is complete...
});

I want to achieve a slideUp with an animation to perform in the same way.

$('#something').slideUp().animate({opacity: 0,duration: 'fast'});

How do I transpose this code into a function that waits until both the slideup and the animation are complete before performing further code?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Something like this??

function animateAndExecute(functionToExecute) {
    $('#something').slideUp().animate({opacity: 0,duration: 'fast'});
    setTimeout(functionToExecute, 400) // Time taken to slide up. Use 600 if u use `slow` for animation duration.
}

and use it like

animateAndExecute(function() {
    // Code to execute after sliding and animating
})
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!