Is it possible to disable the \'next\' and \'previous\' buttons in Mobile Safari when focused on an input field? I\'ve been trying the method of setting all fields to
I haven't personally tested this, but perhaps try disabled instead of readonly.
Readonly - A read-only field cannot be modified. However, a user can tab to it, highlight it, and copy the text from it.
Disabled - A disabled input element is unusable and un-clickable.
Maybe this is the difference you need?