Showing posts with label screen height. Show all posts
Showing posts with label screen height. Show all posts

27 February 2014

How to find javascript window screen height

<!DOCTYPE html>
<html>
<body>

<script>

document.write("Available Height: " + screen.availHeight);

</script>

</body>
</html>

How to find javascript window screen width

<!DOCTYPE html>
<html>
<body>

<script>

document.write("Available Width: " + screen.availWidth);

</script>

</body>
</html>