In all recent browser:
window.innerWidth // 1920
In Internet explorer 8
window.innerWidth // undefined
You can get this information from IE 8 with
document.documentElement.clientWidth
Be advised that this value will not be exactly the same that IE 9 returns for window.innerWidth.
window.innerWidth