I have a form that's constructed inside a quite graphical web app and the fields span many screens.
When a user uses the auto-fill function with their browser (namely chrome for taking away the ability for developers to stop auto-fill) the auto fill focus' on the last edited field.
The issue with this is because we have a handful of input fields per screen when the auto-fill fills out the info starting from say the name field it then auto populates down to the address which is much further away and skips many fields and screens and breaks some other visual aspects of the app.
In an idle world autocomplete being set to off would be enough but that's not going to happen thanks to chrome. So what I need now is a viable way to stop the focus from shifting the screen space to the last field.
But I'm not exactly sure how to detect a autofill event if there is one or how to rough detect it using JS or jQuery.