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

(2 votes)
Loading...

Similar Posts

Subscribe
Notify of
8 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Babelfish
2 years ago

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

Babelfish
2 years ago
Reply to  Bohne47

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.

Babelfish
2 years ago

You can stop this with CSS:

.inner {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
Babelfish
2 years ago

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.