Touch events handle finger interactions on mobile devices:
el.addEventListener("touchstart", handleStart);
el.addEventListener("touchmove", handleMove);
el.addEventListener("touchend", handleEnd);
For basic interactions, click works on mobile too. Use touch events for gestures like swipe.