The Mobile Web should just work for everyone
blogs.msdn.com
The Mobile Web should just work for everyone
1–10 of 127 posts
Re: The Mobile Web should just work for everyone
#2even though I think it's the more appropriate/non-misleading one.
Re: The Mobile Web should just work for everyone
#3Re: The Mobile Web should just work for everyone
#4 function isMobile() {
return navigator.userAgent.toLowerCase().indexOf("mobile")>=0;
}
This is really the best we can do after twenty years of the WWW?Re: The Mobile Web should just work for everyone
#5Re: The Mobile Web should just work for everyone
#6And the title will be changed by mods in 3...2..1... even though I think it's the more appropriate/non-misleading one.
For anyone seeing this comment after the title has been changed, OP's title was "Windows Phone's IE starts masquerading as mobile Safari to render pages properly"
Re: The Mobile Web should just work for everyone
#7"In general, our advice is to develop a responsive site that can adapt to the capabilities of different devices. If you choose to build a mobile-specific experience then we recommend looking for the sub-string "mobile" in the user agent string to determine when to deliver mobile optimised content:" function isMobile() { return navigator.userAgent.toLowerCase().indexOf("mobile")>=0; } This is really the best we can do…
Re: The Mobile Web should just work for everyone
#8Re: The Mobile Web should just work for everyone
#9"In general, our advice is to develop a responsive site that can adapt to the capabilities of different devices. If you choose to build a mobile-specific experience then we recommend looking for the sub-string "mobile" in the user agent string to determine when to deliver mobile optimised content:" function isMobile() { return navigator.userAgent.toLowerCase().indexOf("mobile")>=0; } This is really the best we can do…
Re: The Mobile Web should just work for everyone
#10Anyone know what the IE11 update User Agent actually is, merely out of curiosity?