UPDATE: The issue seems to stem from having many select elements on a page. How random is that?
So here\'s the issue. On iOS 7 Safari, when tapping
The main issue for me was with hidden fields. Made the form hang for 10-15 seconds.
I managed to get around by positioning the hidden form fields off the screen.
To hide:
position: absolute; left: -9999px;
To show:
position: relative; left: 0;