Trying to use double-click of jquery.finger plugin for mobile, but also want to support standard desktop click. Is this possible, anyone? or @ngryman
Simple example:
<div id="mydiv">
<i></i>
<span>Text</span>
</div>
$('#mydiv').on('doubletap', function() {
// do something in both desktop & mobile
});
Currently, in desktop, a single click doesn't do anything.