<head> of your html document
<script type="text/javascript">
var scrH1 = screen.height;
</script>
<body>
<script type="text/javascript">
<!--
document.write(""+scrH1+"px");
//-->
</script>
Screen Height - Displays:
Save the following script as screenheight.js
<!--
var scrH2 = screen.height;
document.write(""+scrH2+"px");
// or
// document.write(""+screen.height+"px");
// without variable
//-->
<body> of your html document
<script src="/js/screenheight.js" type="text/javascript"></script>
Screen Height - Displays:
<body> of your html document
<script type="text/javascript">
<!--
var scrH3 = screen.height;
document.write("Screen Height is "+scrH3+"px");
// or
// document.write("Screen Height is "+screen.height+"px");
// without variable
//-->
</script>
Screen Height - Displays: