I must be doing it wrong because even though it works on IE9+, Edge, ff, chrome, and android it doesn't work on IOS. This code, on IOS, will just keep on a runnin'. Is there a way to fix this?
function handleeeee() {
alert("HANDL-O");
document.body.removeEventListener("touchstart", handleeeee);
}
document.body.addEventListener("touchstart", handleeeee, { once: true });