In Internet Explorer (any version) if you click twice fast a checkbox it changes only once. Another browsers don't do this.
This is "by design" or a very strange behavior(bug)?
In Internet Explorer (any version) if you click twice fast a checkbox it changes only once. Another browsers don't do this.
This is "by design" or a very strange behavior(bug)?
The below code works for me:
While I was working as system administrator in many different companies I've oftentimes seen people using doubleclick as default action to interact with any UI element. The first thing they learned about Windows, is that doubleclick launches an icon (shortcut). And they apply this knowledge to every other elements, no matter what it actually is: link, button, icon or checkbox =) So, I suppose it made deliberately, that IE counts doubleclick as singleclick.
Workaround / Solution
Using jQuery i fixed the problem like this:
Explanation: On a double click in Internet Explorer, the events are fired like this:
On a double click, the desired action in my click event happened twice (like it should), but the checkbox did not change states twice. So i simply toggled the checked/unchecked-state again when a double click fires. As this would break functionality in Firefox/Chrome/etc, i only used it in MSIE (Internet Explorer) user agents.
With the code above, the events and checkbox-states fire/change like this:
Double Click in All Browsers except IE:
Double Click on a checkbox in Internet Explorer
This seems to be a general bug in IE that applies not just to checkboxes, but click-handling in general. Looks like it will be fixed in IE9 Platform Preview 4:
http://webbugtrack.blogspot.com/2008/01/bug-263-beware-of-doubleclick-in-ie.html