JavaScript Reference/Javascript Properties/availHeight

Материал из Web эксперт
Перейти к: навигация, поиск

"availHeight" Example

   <source lang="javascript">
   

<html> <body> <button onClick=" alert(screen.availHeight);">Available Height</button> </body> </html>


     </source>
   
  


"availHeight" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |screen | +----------------+--------------------------------------------------------------+

     </source>
   
  


"availHeight" Syntax and Note

   <source lang="javascript">

Note: Read-only property. Returns the computer screen height. The working area does not include the taskbar.

Syntax:

screen.availHeight


     </source>