Javascript Events are not working in Tablet-pc?

前端 未结 3 1992
隐瞒了意图╮
隐瞒了意图╮ 2021-01-18 20:09

I have developed a web application in asp.net 3.5. It is consuming lot of javascript/JQuery events and working properly in normal browser in pc, but my client is saying that

3条回答
  •  春和景丽
    2021-01-18 20:25

    You can use a combination and try touchstart instead of tap

    ('myelement').bind('touchstart click', function(event){
       myClickFunction();   
    });
    

提交回复
热议问题