in my application i did a redirection to mobile version:
location.href = 'http://m.' + host_name;
However i got a very strange behavior on native Android browser:
Enter http://mydomain.com --> browser redirect me to http://m.mydomain.com, but the URL in the address bar still display as "mydomain.com". When i refresh browser, it display correctly: "m.mydomain.com".
Enter directly "m.mydomain.com" work correctly.
P/s: this only happen when my script is minified. with Un-minified version, the browser display the URL correctly as "m.mydomain.com".
Any one experience this problem? Thanks for your help!