I've been checking web application cross-browser compatibility and noticed few issues. One of the major issue was autocomplete.
When user enters something in input text, by default, IE will take auto-complete is on and fills the previously entered data. But in Chrome, its exact opposite. It won't retain previously entered data.
This is what I've observed for the above behavior in browsers.
- IE 11 -> Retains (even when auto-complete is off)
- Chrome 54 -> Retains
- Opera 38 -> Retains
- Firefox 52 -> Retains
- safari 5 (Windows) -> Retains
When I checked with Kendo UI control, for same browser, behavior changes like this.
- IE 11 -> No
- Chrome 54 -> No
- Opera 38 -> No
- Firefox 52 -> Yes
- safari 5 (Windows) -> No
If I need to ensure same behavior for all these browsers, what I'm supposed to do? Preferably for both Kendo UI and HTML5?