I'm working on a web app that features a number of regions that are dynamically shown and hidden throughout use of the application.
As the application is striving for WCAG Compliance, I have logic in place that causes the first selectable input of any region that is activated receive focus when a region is activated. This allows for a visually impaired user to have their attention applied to the proper region of the application.
This works perfectly fine on Windows, Android, and MacOS. However, when using iOS Safari the picker is automatically activated when a <select>
receives focus. This is undesirable behaviour, as every time these regions are activated the picker dialogue is displayed.
Is there a way I can make it so that iOS Safari doesn't display the picker dialogue when an element receives focus?