Nogen der kan fortælle mig hvorfor følgende kode ikke vil virke?
...
this.nn = false;
if((document.getElementById && !document.all) || document.layers)
this.nn = true;
...
this.screen_width = this.nn? window.innerWidth: document.body.clientWidth;
this.screen_height = this.nn? window.innerHeight: document.body.clientHeight;
Ved at nn virker fint, og har også bruge window.innerWidth/Height & document.body.clientWidth/Height før, men hvorfor vil det her så ikke virke
- Mads