$(document).bind 'touchstart', (event) -> console.log event.touches
Это всегда не определено, я не могу понять, почему. Как есть targetTouches.
targetTouches
Есть идеи? Я тестирую на iPad.
Спасибо.
Ваш синтаксис выглядит странно для меня, но в обычном JavaScript:
$(document).bind('touchstart', function(event) { console.log(event.originalEvent.touches); });