i am using jquery and touchmove event but the code is not showing anything in #info
$(\'#movieShow\').bind(\'touchmove\',function(e){
Try using e.originalEvent.touches:
$('#movieShow').bind('touchmove',function(e){
e.preventDefault();
var touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0];
console.log(touch.pageX);
});
I ran into a similar problem when I was playing around with touch events and jquery: http://xavi.co/articles/trouble-with-touch-events-jquery