screen.availLeft : screen « Javascript Objects « JavaScript DHTML






screen.availLeft

  
<html>
<head>
<title>History</title>
</head>
<body>
<script type="text/javascript">
    document.writeln("screen.availTop: " + screen.availTop + "<br />");
    document.writeln("screen.availLeft: " + screen.availLeft + "<br />");
    document.writeln("screen.availWidth: " + screen.availWidth + "<br />");
    document.writeln("screen.availHeight: " + screen.availHeight + "<br />");
    document.writeln("screen.colorDepth: " + screen.colorDepth + "<br />");
    document.writeln("screen.pixelDepth: " + screen.pixelDepth + "<br />"); 
</script>
</body>
</html>

   
    
  








Related examples in the same category

1.'screen' Example
2.Available Height
3.Total Height
4.Available Width
5.screen.pixelDepth
6.screen.colorDepth
7.screen.availTop
8.Total Width