Does anyone know why this code might not work? touchmove and touchend do not execute only touchstart because that\'s a seperate event and function :)
$(\'input\'
I think this would work
$('x').live("ontouchmove, ontouchend", function (e) { //do stuff if (e.type == 'ontouchmove'){ //do stuff } else{ //do stuff } });