How do I get the size of the browser window using Prototype.js version 1.6.0.3?
this works on all modern browser and ie6+:
var w = document.documentElement.clientWidth; var h = document.documentElement.clientHeight;
A correct Doctype is required