I see the problem.  It's an issue with how the success handler is
called from the form plugin.  When you specify a target element the
success callback is being invoked once for every matching element.
This is not correct and I will need to fix it.  In the meantime, you
can mod your code like this to get around the problem:

$('form#object').ajaxForm({
   target: '#oblist,#oblistt',
   complete: function(xhr, status) {
       if (status == 'success')
           $('#oblist,#oblistt').fadeIn('slow');
   }
});


Mike

On 6/12/07, slakoz <[EMAIL PROTECTED]> wrote:

link to sample page with the problem: www.torli.pl/fadein/index.html


Reply via email to