files/en-us/web/api/element/touchend_event/index.md
{{APIRef("Touch Events")}}
The touchend event fires when one or more touch points are removed from the touch surface. Remember that it is possible to get a touchcancel event instead.
Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property.
addEventListener("touchend", (event) => { })
ontouchend = (event) => { }
A {{domxref("TouchEvent")}}. Inherits from {{domxref("Event")}}.
{{InheritanceDiagram("TouchEvent")}}
This interface inherits properties from its parent, {{domxref("UIEvent")}} and {{domxref("Event")}}.
0.0.1.0.Code samples for those events are available on the dedicated page: Touch events.
{{Specifications}}
{{Compat}}