<head> of your html document
<script type="text/javascript">
var scrW1 = screen.width;
</script>
<body>
<script type="text/javascript">
<!--
document.write(""+scrW1+"px");
//-->
</script>
Screen Width - Displays:
Save the following script as screenwidth.js
<!--
var scrW2 = screen.width;
document.write(""+scrW2+"px");
// or
// document.write(""+screen.width+"px");
// without variable
//-->
<body> of your html document
<script src="/js/screenwidth.js" type="text/javascript"></script>
Screen Width - Displays:
<body> of your html document
<script type="text/javascript">
<!--
var scrW3 = screen.width;
document.write("Screen Width is "+scrW3+"px");
// or
// document.write("Screen Width is "+screen.width+"px");
// without variable
//-->
</script>
Screen Width - Displays: