### Most appropriate sub-area of p5.js? - [x] Events ### p5.js version 1.11.8 ### Web browser and version iPhone Safari ### Operating system iOS ### Steps to reproduce this ### Steps: 1. mousePressed does not work in iPhone Safari - 1.11.8 - https://editor.p5js.org/qalqi/sketches/IRxUM48mb https://github.com/user-attachments/assets/81315614-08e6-4486-98e4-0a137ba0e2d5 2. mousePressed works in iPhone Safari - 2.0.3 - https://editor.p5js.org/qalqi/sketches/IRxUM48mb https://github.com/user-attachments/assets/e1cef539-f7dc-455a-977b-6aeb77d273aa ### Snippet: ```js function setup() { createCanvas(400, 400); } function draw() { background(220); } function mousePressed() { alert('hi! Version 1.11.8') } ``` A similar issue is earlier closed for touch move at https://github.com/processing/p5.js/issues/5358 #5358