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\'
The event names in the first argument to ".live()" need to be separated by spaces, not commas.
$('input').live("touchmove touchend", function (e) {