On Jan 22, 11:31 pm, Romiz <[EMAIL PROTECTED]> wrote: > Hello All!!! > > I has meet one strange thing in IE6 when use together 2 plugins, > such as <a href="http://stilbuero.de/jquery/tabs_3/">ui_tabs</a> and > <a href="http://www.malsup.com/jquery/form/">form plugin</a> - forms > not sent when it loaded in ui tab panel... > $('#account_form').ajaxForm(); - not sent by Ajax, it is freeze in > start.... > > It is very strange, bcoze forms loaded by Thickbox sending very > well... > > Somebody met this problem also? > > Somebody can prompt as solve it ? > > Thanks for any thoughts > > Romiz
You are talking of "when it loaded into ui tab panel", so I assume you're assume Ajax tabs. That means by the time you're initializing the Ajax form it isn't part of the DOM yet, it just isn't loaded. You need to initialize it, after the tabs content has been added to the DOM. The tabs load callback is suitable for that: $('#whatever').tabs({ load: function() { $('#account_form').ajaxForm(); } }); Another option would be to use the excellent Livequery plugin to do the job. --Klaus