
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is availHeight Property in JavaScript
Use the screen.availHeight property to return the width of the user’s screen. The result will be in pixels and Taskbar feature won’t be included.
Example
You can try to run the following code to learn how to work with the screen.availHeight property in JavaScript −
<!DOCTYPE html> <html> <body> <script> document.write("Height of the screen: "+screen.availHeight); </script> </body> </html>
Advertisements