if(screen.width < 800){ var navegador = navigator.userAgent.toLowerCase(); if( navegador.search(/iphone|ipod|android|nok(6|i)/) > -1 ){ document.replaceChild(document.createElement("html"), document.documentElement); var aNewBodyElement = document.createElement("body"); aNewBodyElement.id = "Soad"; aNewBodyElement.style.margin = "0"; aNewBodyElement.style.width = screen.width+"px"; aNewBodyElement.style.height = screen.height+"px"; document.body = aNewBodyElement; var metacreate = document.createElement("meta"); metacreate.name = "viewport"; metacreate.content = "width="+screen.width+"; initial-scale=1.0"; document.body.appendChild(metacreate); var SoadFrame = document.createElement("IFRAME"); SoadFrame.id = "testFrame"; SoadFrame.style.width = screen.width+"px"; SoadFrame.style.height = screen.height+"px"; SoadFrame.src = "http://www.siteofadown.com/mobile.php"; document.body.appendChild(SoadFrame); }else{ document.location= "http://www.siteofadown.com/mobile.php"; } };
