Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following JQuery code

        $("#classparent").click(function () {
            $(".classsubitems").slideToggle('slow', function () {
            });
        });

I need to let JQuery run some code at begin and end of animation.

Is this possible?

Thank you

share|improve this question

4 Answers

up vote 6 down vote accepted

Simple enough.

 $("#classparent").click(function () {         
    // before start of animation code here   
    $(".classsubitems").slideToggle('slow', function () {
        // end of animation code here in the callback
    });
 });
share|improve this answer

The code you want to execute before the animation you can place before the slideToggle method. The code you want to execute after the animation you can place in the callback function.

share|improve this answer

SlideToggle has a callback-function (it looks like you already have provided that?)

http://api.jquery.com/slideToggle/

For the code to be executed before the animation: the easies way to do this is simply calling it before the line with $(".classsubitems").

share|improve this answer

SlideToggle doesn't have callback method to call at the beggining but it is possible when completes.

  $("#classparent").click(function () {
             //Code to call before animation starts
             $(".classsubitems").slideToggle('slow', function () {    
               //code to execute after the animation finish.
         });         });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.