Has anyone been able to reproduce this or am I just crazy ?
seedy wrote:
>
> I have a few checkboxes that fire an ajax request, and use blockUI to
> block an element during this request.
> Problem is, the checkbox gets 'unchecked' whenever blockUI shows up.
> Its reproducible with the following code (appears to not just affect
> element blocking)
>
> <html>
> <body>
> <input type=checkbox>check me </input>
> </body>
> <script lang="javascript" type="text/javascript"
> src="jquery-1.1.4.pack.js" ></script>
> <script lang="javascript" type="text/javascript" src="jquery.blockUI.js"
> ></script>
> <script>
> $(function(){
> $('input:checkbox').click(function(){ alert('booga'); $.blockUI(); });
> });
> </script>
> </html>
>
> You will see the box get checked, then when the alert goes away, it
> magically becomes unchecked. Any ideas?
>
--
View this message in context:
http://www.nabble.com/blockUI-IE6-checkbox-tf4361472s15494.html#a12478271
Sent from the JQuery mailing list archive at Nabble.com.