window width

wxdqz

New Member
if (document.layers) {
width = window.innerWidth;
}
else if (document.all) {
width = document.body.clientWidth;
}

That gives me the inner window width. What are the corresponding two variables to give me the outer window width?
 
Back
Top