Hi Peppe,

-----Peppe <[EMAIL PROTECTED]> wrote: -----

> Hi, is there a method to count domMouseEvent click?

   From the DOM2 Events spec:
http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent


        If multiple clicks occur at the same screen location, the
        sequence [mousedown, mouseup, click] repeats with the "detail"
        attribute incrementing with each repetition.

So you can use 'getDetail()' to get the click count.

Reply via email to