" Could you possibly post a demo page somewhere?" Mike, this code: http://paste.pocoo.org/show/95075/
shows what he means, i even tried to change ".click" to ".change" and it still never checks the box.... Results.ashx just returns "hello world" in plain text and works fine in FireFox On Oct 23, 6:44 pm, Mike Alsup <mal...@gmail.com> wrote: > What exactly is the problem you're seeing? Could you possibly post a > demo page somewhere? > > Mike > > On Oct 23, 10:22 am, Snooky <jsn...@gmail.com> wrote: > > > Alright, so I saw that this issue had been raised before, but > > apparently never actually fixed. > > > I only tested it in FF and Chrome. > > > To reproduce: > > html: > > <input type="checkbox" value="3" id="mycheck" /> > > <div id="return" ></div> > > > js: > > $(function() > > { > > $("input#mycheck").click(function() > > { > > // do something with ajax > > } > > > $("#return").ajaxStart(function() > > { > > $.blockUI(); > > }) > > .ajaxStop(function() > > { > > $.unblockUI(); > > }); > > > } > > > The fix because I was in a hurry to get something done: > > blockui.js, ~ line 265: > > // var events = 'mousedown mouseup keydown keypress click'; > > // b ? $(document).bind(events, opts, handler) : $ > > (document).unbind(events, handler);