I have added a touch start event listener to a image.
Image.addEventListener('touchstart', myFunction);
My question is, is it possible to force a fake touchstart/touchend to occur on my image, without it actually happening? I already know I could simply call the function again whenever I like, I need to actually fake its properties to say a touchend has occurred.