문제

I've been looking around and can't find any information on whether or not you can track finger swipes in Google Analytics.

도움이 되었습니까?

해결책

Yes, you can do this. jQuery Mobile includes swipe support

$("#the_div_id_that_is_swiped").on("swipe", function(event) {
   // it has been swiped, so track it as an event
   _gaq.push(['_trackEvent', 'Swipe', 'Landing Page Image', 'Description in here...']);
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top