Je cherche à détecter de manière distincte l'évènement clic et l'évènement double - clic sur un élément.

Seulement ces deux évènements ne sont pas compatibles pour le même élément html :

It is inadvisable to bind handlers to both the click and dblclick events for the same element. The sequence of events triggered varies from browser to browser, with some receiving two click events and others only one. If an interface that reacts differently to single- and double-clicks cannot be avoided, then the dblclick event should be simulated within the click handler. We can achieve this by saving a timestamp in the handler, and then comparing the current time to the saved timestamp on subsequent clicks. If the difference is small enough, we can treat the click as a double-click.

src : http://api.jquery.com/dblclick/
J'ai donc opté pour la solution préconisée par la doc de jQuery et dont on trouve un exemple ici

Seulement, si vous testez avec IE, les clics sont détectés à intervalles très lents. On ne peut donc pas simuler un double - clic "rapide".

Une solution à cela?

merci