Visit Mozilla.org

DOM:window.screen.availTop

From MDC

« Gecko DOM Reference

Contents

[edit] Summary

Specifies the y-coordinate of the first pixel that is not allocated to permanent or semipermanent user interface features.

[edit] Syntax

iAvail = window.screen.availTop

[edit] Example

setY = window.screen.height - window.screen.availTop;
setX = window.screen.width - window.screen.availLeft;
window.moveTo(setX, setY);

[edit] Notes

In most cases, this property returns 0.

[edit] Specification

DOM Level 0. Not part of specification.