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\'
First off, your event variable should be the parameter e rather than event.
e
event
Second, when testing for equality, you need two equals signs: ==. One equals sign is the assignment operator.
==