Tutorial Fix IE 10 on Windows Phone 8 Viewport
(function() { if (navigator.userAgent.match(/IEMobile\/10\.0/)) { var msViewportStyle = document.createElement("style"); ...
https://iskablogs.blogspot.com/2014/03/tutorial-fix-ie-10-on-windows-phone-8.html
(function() {
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement("style");
msViewportStyle.appendChild(
document.createTextNode("@-ms-viewport{width:auto!important}")
);
document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
}
})();
Quick backstory
For IE 10 (desktop) to work in it's new "snap mode"
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement("style");
msViewportStyle.appendChild(
document.createTextNode("@-ms-viewport{width:auto!important}")
);
document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
}
})();
Quick backstory
For IE 10 (desktop) to work in it's new "snap mode"