The touchstart event is fired when one or more touch points are placed on the touch surface.
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener("touchstart", (event) => { })
ontouchstart = (event) => { }A TouchEvent. Inherits from Event.
Code samples for those events are available on the dedicated page: Touch events.