Domanda

I've made a website with a clickable DIV:

jQuery("#add").on('click', function(e){
addlist();
});    

It works on desktops, but not on touchscreens. I hope there is someone who could tell me how to make it clickable on touchscreens too.

È stato utile?

Soluzione

Use the tap event provided by jquery mobile.

The jQuery Mobile tap event triggers after a quick, complete touch event that occurs on a single target object. It is the gesture equivalent of a standard click event that is triggered on the release state of the touch gesture.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top