I currently have a web application working both on desktop browsers and tablets. I got everything to work and listening to the correct event types, except the jquery mobile scrollview.
I use this plugin for a navigation bar on the bottom. It works on all browsers but internet explorer. Does anyone know what to change in the file to let it work on ie?
I’ve also found the plugin iScroll, but this one doesn’t give the same functionallity. I’d rather stay with jquery mobile scrollview if possible.
In order to let jquery mobile scrollview work with IE, modify the jquery.mobile.scrollview.js, line 22 to: > scrollMethod: “scroll”, // “translate”, “position”, “scroll” This is by default set on translate, which is not supported by IE.