JavaScript window.screen.availHeight Property
You are Here:
JavaScript window.screen.availHeight Property
The window.screen.availHeight
property returns the amount of vertical space (in pixels) available to the window, i.e, the height of the screen minus interface features like the Windows Taskbar.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
var txt = "Available screen height: "+ window.screen.availHeight;
document.write(txt);
</script>
</body>
</html>
Syntax
window.screen.availHeight
Return Value
Value | Explanation |
---|---|
Number | A Number, representing the amount of vertical space (in pixels) available to the window. |
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.