Hola
¿Y si en vez de usar screen.width usas clientWidth y window.innerWidth?
Código javascript
:
Ver originalvar ieNOTopera=document.all&&navigator.userAgent.indexOf("Opera")==-1
function iecompattest() {
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
var ancho_ventana = ieNOTopera? iecompattest().clientWidth : window.innerWidth;
Suerte