JavaScript Window screenTop property

The JavaScript Window screenTop property is a read-only property that returns the vertical position of the current window relative to the user’s screen. It is commonly used to determine the position of the window on the screen, or to move the window to a specific location.

Here are some examples of how the screenTop property can be used in JavaScript code:

  1. To retrieve the vertical position of the current window, you can use the following code:
var top = window.screenTop;

// the value of top will be the vertical position of the window
  1. To move the current window to a specific vertical position, you can use the following code:
// calculate the new position of the window
var left = window.screenLeft;
var top = (window.screen.availHeight - window.outerHeight) / 2;

// move the window to the calculated position
window.moveTo(left, top);
  1. To center the current window on the screen, you can use the following code:
// calculate the position of the window
var left = (window.screen.availWidth - window.outerWidth) / 2;
var top = (window.screen.availHeight - window.outerHeight) / 2;

// move the window to the calculated position
window.moveTo(left, top);

Overall, the screenTop property provides a convenient way to retrieve and manipulate the vertical position of the current window on the screen. It can be used for tasks such as centering the window, moving it to a specific location, or other operations that require the vertical position of the window.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Blog at WordPress.com.

%d bloggers like this: