Reputation: 875
When using Safari on an iOS device, a website I'm working on scrolls down automatically:
I'm completely unsure why, and have investigated without success:
Upvotes: 5
Views: 4775
Reputation: 11
you can check for any "autofocus" attribute given to form fields. Especially in MAC it auto focuses on form field regardless of where your form is placed.
For example:
input type="text" name="fname autofocus"
Hope this resolves your problem.
Upvotes: 1