When exactly does the JavaScript element touchleave fire?
I thought it would work if you clicked a button, for example, and then moved your finger away from the clicked button. But it doesn't work. (Nothing happens.)
let DerButton = document.getElementById('MeinButton'); DerButton.addEventListener('touchleave', leave); function leave(){ alert('der Finger hat den Bereich verlassen');
In case I completely misunderstood: Is there another event handler that does this?
Kind regards,
Bean47
The tochleave event has been suggested, but never accepted by the W3C. What touch events are available here:
https://www.mediaevent.de/javascript/touch-events.html
That explains a lot… why is that online? I don’t care. But is there another way to trade? My current problem is: by touchstart an animation is called, and by touching it ends, but if the user clicks on the button, but does not let go, but with the finger from the button ‘runterwischt’, the animation runs endlessly.
I’ve just tested it, and this is where it’s going clean:
https://jsfiddle.net/Babelfisch/c7htn0ry/22/
There is still the touchcancel event but I couldn’t trigger it.
Thank you.
You can stop this with CSS:
My current problem is all that the text is always chosen if you tap on your finger too long. And then it goes on endlessly. But why not mix it?
So I wouldn’t work with two completely different event types. It can only go wrong. Either the touch events or focus/blur but not so and so.
But as you can see in my little example, the touch events are really enough.
Yeah, I’ve added the Blur Event now, and now it’s okay.