Fixed. I deployed this to your site, but for reference:
There is a historical convention that a form will submit when you press enter on a field that has no implicit handling of enter (e.g. a textarea would use it to put in a line break).
ios7 does not seem to follow this.
The fix was to add this to the SU input:
onkeypress="if (enter_pressed(event)) this.form.submit();"
0 guests and 0 members have recently viewed this.
Leader-board Top Weekly Earners
The top 2 point earners from 29th Mar 2026 to 5th Apr 2026.
There is a historical convention that a form will submit when you press enter on a field that has no implicit handling of enter (e.g. a textarea would use it to put in a line break).
ios7 does not seem to follow this.
The fix was to add this to the SU input:
onkeypress="if (enter_pressed(event)) this.form.submit();"