Java Script & DOM 78

방문자의 브라우저 스크린의 정보 탐색: screen 객체

방문자의 브라우저의 스크린 정보를 확인하기 위한 객체로 screen 객체가 있다. document.write("Total width/height: "); document.write(screen.width + "*" + screen.height); document.write("<br />"); document.write("Available width/height: "); document.write(screen.availWidth + "*" + screen.availHeight); document.write("<br />"); document.write("Color depth: ")..