Я использую
window.addEventListener("touchstart", function(ev){
console.log(ev.touches); // good
});
Как я могу перевести это на jQuery? Я пробовал:
$(window).bind("touchstart",function(ev){
console.log(ev.touches); // says ev.touches is undefined
}
Есть идеи?