문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top