[jQuery] Re: plugin blockUI what do i do wrong ?

2007-05-26 Thread Michael Stuhr
Mike Alsup schrieb: Glad to hear that you've got it working, Micha. Maybe you can post a link to your code instead of sending it all? sure, i can do that. http://onenterframe.de/ajax/ micha

[jQuery] Re: plugin blockUI what do i do wrong ?

2007-05-25 Thread Mike Alsup
You need to change this: $j.unblockUI; to this: $j.unblockUI(); Mike $j(#ModalYes).click( function() { $j.unblockUI; console.info(you clicked yes);

[jQuery] Re: plugin blockUI what do i do wrong ?

2007-05-25 Thread Michael Stuhr
Mike Alsup schrieb: You need to change this: $j.unblockUI; to this: $j.unblockUI(); Mike thanks for that hint, i changed that and in my sample it will do the job (documentation should be updated, see: http://malsup.com/jquery/block/#dialog ) ... however i changed my sample to hide

[jQuery] Re: plugin blockUI what do i do wrong ?

2007-05-25 Thread Michael Stuhr
Mike Alsup schrieb: thanks for that hint, i changed that and in my sample it will do the job (documentation should be updated, see: http://malsup.com/jquery/block/#dialog ) ... The documentation is correct. Use $.unblockUI() when invoking the function directly. Use $.unblockUI when passing

[jQuery] Re: plugin blockUI what do i do wrong ?

2007-05-25 Thread Mike Alsup
Glad to hear that you've got it working, Micha. Maybe you can post a link to your code instead of sending it all? Mike i know, i just wanted to make sure, cause in my implementation (not the example) i had the case where two modals where there in IE6. i mixed up the code a bit. sorry if