[jQuery] Re: ajaxSubmit multiple targets problem

2007-05-04 Thread juliandormon
Thanks MIke! That works. Keep up the awesome work! malsup wrote: > > > Julian, > > It looks like you're probably just rebinding the form over and over. > Try changing that bind line to this: > > $('#' + theForm).unbind('submit').submit(function() { > > Mike > > > On 5/4/07, juliandorm

[jQuery] Re: ajaxSubmit multiple targets problem

2007-05-04 Thread Mike Alsup
Julian, It looks like you're probably just rebinding the form over and over. Try changing that bind line to this: $('#' + theForm).unbind('submit').submit(function() { Mike On 5/4/07, juliandormon <[EMAIL PROTECTED]> wrote: Hi all, I am using Mike's ajaxSubmit method but I am running into