I recently developed a web app which used the JavaScript window.location property to redirect the browser. This worked fine on PC browsers, but did not function at all on both of the Android browsers I tried it on.
The unsupported browsers were: Browser (built-in) and Dolphin Browser.
I discovered that location.replace() does work on these browsers, as well as on the PC.
Is this Android limitation documented anywhere, and what other redirect methods are available on the Android platform?
For raw JavaScript redirect, location.replace() works.
The more robust way of redirecting would be to use JQuery, as this should handle platform-specific cases under the covers.