Hi, I'm not sure if this is possible, but I would like to execute an effect
once the current effect has completed a certain portion of it's task.

This is what I want to do:

$(document).ready(function() {

  $('#full-article').hide();


  $('#link-full-article').click(function() {
            $('#full-article').slideDown("slow");       
                
        //when the .slidedown effect has shown 375px of the hidden div, do the
following:
                
    $('.query-hide-content').animate({opacity: 'hide'}, 10);                    
                                                                         
  return false;
  });
        
});

Is it possible to do this?    

-- 
View this message in context: 
http://www.nabble.com/Execute-effect-half-way-through-current-effect-tf3251041.html#a9037474
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to