actually that is exactly what I am doing, I have checked already as you said, if moved the form into blockUI
:(
this is really weird behaviour I must say

Mike Alsup wrote:

Kush,

When you do this:  $.blockUI(form)  the plugin adds your form to the
blockUI message element.  This means the form is implicitly removed
from the DOM and then reinserted in a different position.  Try binding
the form after you block.  Maybe something like:

$.blockUI(form);
$(form).ajaxForm(options);

Mike


On 4/19/07, Kush Murod <[EMAIL PROTECTED]> wrote:

Hi guys,

I am placing a form into blockUI like so
$.blockUI(form) and then attaching form plugin like so .ajaxForm(options);
Form pluging works perfect as long as it is not used with BlockUI, but
as soon as you insert it into BlockUI submit does not really work

--Kush

Reply via email to