On 11 Feb, 13:40, lgr888999 <[EMAIL PROTECTED]> wrote:
> how would i go for doing a slideUp and an ajax request simultanously
> but only handle the ajax response once the slideUp is finished?

uhm... I'd try something like this:

$.ajax({
            url: 'myfile',
            ...
            success: function(data){
                     $('#target').slideUp(function(){
                               // do what you have to do with your
data
                     });
             }
});

Reply via email to