[jQuery] Re: blockui message centered to the form element

2007-04-26 Thread Mike Alsup
Instead of using $.blockUI you can do this: $('#myForm').block('h1Please Wait.../h1'); and then $('#myForm').unblock(); when you want to remove the block. Mike hey... is there a way to display a loading message using blockui or somthing similar that only shows the loading message inside

[jQuery] Re: blockui message centered to the form element

2007-04-26 Thread amircx
how do i assign it to some submit button inside of it? im usign jorn's plugin malsup wrote: Instead of using $.blockUI you can do this: $('#myForm').block('h1Please Wait.../h1'); and then $('#myForm').unblock(); when you want to remove the block. Mike hey... is there a

[jQuery] Re: blockui message centered to the form element

2007-04-26 Thread Mike Alsup
I don't know how you have it setup, but you should be able to simply replace the $.blockUI call with a call like $('#myForm').block(). Mike how do i assign it to some submit button inside of it? im usign jorn's plugin Instead of using $.blockUI you can do this: