Hello!!
I've got an event listener that works great with "click". But I can't get the "dblclick" event to work.
This works fine:
document.querySelector("#myElement").addEventListener("click",function(){myEventHandler();});
This doesn't work, that is, myEventHandler is never called even when double tapping (double clicking) on myElement- note that the only difference between the code above and the code below is the use of "dblclick" instead of "click".
document.querySelector("#myElement").addEventListener("dblclick",function(){myEventHandler();});
Any ideas on how to add an event listener for a double tap/click? BTW, the dblclick DOES work with the simulator, but not on the emulator and not on the actual device. Using Tizen 2.3.1+ on Gear S2 Classic
Thanks in advance!