I have set up a jsfiddle to show the issue I have. http://jsfiddle.net/fy8tK/3/
In simple terms, I have a child element that has both a single click and double click trigger. They are both handled within the click
event using a timeout.
The parent term also has a double click event. I defined it using dblclick
however. event.stopPropagation()
is not working, and I'm wondering if it is because they are different event types?
Basically, I need the parent dblclick
event to not fire if we are actually clicking on the child element.