Encountering an issue with form fields on mobile Safari, version 8.1 that seems to be persisting across all versions of Safari 8 on mobile devices.
Typing text into an input field longer than the visible width causes the cursor to move right as expected. However, the problem arises when attempting to select and scroll left to view hidden text - scrolling is not possible. Similarly, selecting outside the input prevents scrolling right to access the concealed text.
The only available option is to select all and delete the contents.
Is there a workaround for this issue? A sample page showcasing different input types with the same behavior has been uploaded.
Fiddle: http://jsfiddle.net/b7kmxaL6/ (To replicate in mobile safari)
<form action="">
<fieldset>
<input type="text" class="text">
<input type="email" class="email">
<input type="password" class="password">
</fieldset>
</form>