I have a website that includes dragging and clicking and does work on touch devices. (only using javascript, jquery-ui, and jquery, no other libraries)
It works correctly on some devices (a.k. iPhone and some Android devices), but it does not work correctly on some other android devices, especially if they use the latest version of chrome (40.0.2214.111, e.g.) instead of the stock android browser (which should also be chrome, in Android 4.2 or newer?).
The problem is that I have some buttons (bootstrap .btn) that can also be dragged around using jquery draggable and/or sortable. If you click on a touchscreen you also move a little bit (less then 5 pixels) and it on some devices detects this as a drag instead of a click. Is it possible to use jquery to detect this as a click instead?
Kind regards!