<script language="javascript">
document.write("가로 = "+window.document.body.offsetWidth+"<br>");
document.write("세로 = "+window.document.body.offsetHeight+"<br>");
</script>

네스케이프의 경우는 아래와 같이 하시고..
window.innerWidth
window.innerHeight

익스플로어의 경우는 아래와 같이 하시면 됩니다.
window.document.body.offsetHeight
window.document.body.offsetWidth
반응형