|
CodeAve.com - JavaScript - Misc | |||
|
|
|||
| Screen Dimensions (Pixel Setting) | ||||
|
|
||||
<html> <title>CodeAve.com (JavaScript: Screen Height & Width)</title> <body bgcolor="#FFFFFF"> <script language="JavaScript"> <!-- document.write ("<b>Screen Width:</b> ") document.write (screen.width) document.write ("<br>") document.write ("<b>Screen Height:</b> ") document.write (screen.height) // --> </script> </body> </html>
|
||||
|
|
||||