[jQuery] Re: Delayed Checkboxes in IE

2009-02-11 Thread Stephan Veigl
Hi Karl, you are right. I just tested it on IE, FF, Opera and Chrome. click works fine on all 4 browsers for both mouse and keyboard. by(e) Stephan 2009/2/10 Karl Swedberg : > On Feb 10, 2009, at 9:45 AM, Stephan Veigl wrote: > > change your > $("input:checkbox").change(function () {... > lin

[jQuery] Re: Delayed Checkboxes in IE

2009-02-10 Thread Karl Swedberg
On Feb 10, 2009, at 9:45 AM, Stephan Veigl wrote: change your $("input:checkbox").change(function () {... line to $("input:checkbox").bind("change click keypress", function(){... to catch the checkbox every time it has been clicked (either with mouse or keyboard) I'm not sure that keypress i

[jQuery] Re: Delayed Checkboxes in IE

2009-02-10 Thread John C
Worked a treat that, Ie will be the death of me. On Feb 10, 2:45 pm, Stephan Veigl wrote: > Hi John, > > It looks like IE doesn't send a change event when the checkbox has > been clicked, only after the element has lost focus. You can test this > by adding a debug alert to your change function. >

[jQuery] Re: Delayed Checkboxes in IE

2009-02-10 Thread Stephan Veigl
Hi John, It looks like IE doesn't send a change event when the checkbox has been clicked, only after the element has lost focus. You can test this by adding a debug alert to your change function. change your $("input:checkbox").change(function () {... line to $("input:checkbox").bind("chang