Window height and width
In this chapter you will learn:
Size of a window
window's outer width and height, inner height and width.
<!DOCTYPE HTML> <!--from j a v a 2 s . c o m-->
<html>
<body>
<script type="text/javascript">
document.writeln(window.outerWidth);
document.writeln(window.outerHeight);
document.writeln(window.innerWidth);
document.writeln(window.innerHeight);
document.writeln(window.screen.width);
document.writeln(window.screen.height);
</script>
</body>
</html>
Next chapter...
What you will learn in the next chapter:
Home » Javascript Tutorial » Window