how could i detect the size of the current IE window not the screen size (the window is not maximized)
thnks
Printable View
how could i detect the size of the current IE window not the screen size (the window is not maximized)
thnks
window.innerWidth does the content of the page..
window.outerWidth does the window
:)
i tried the script below but returns undefined why?
PHP Code:<script language="Javascript">
alert(window.innerWidth);
</script>