The JavaScript Window screenLeft property is a read-only property that returns the horizontal 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 screenLeft property can be used in JavaScript code:
- To retrieve the horizontal position of the current window, you can use the following code:
var left = window.screenLeft;
// the value of left will be the horizontal position of the window
- To move the current window to a specific horizontal position, you can use the following code:
// calculate the new position of the window
var left = (window.screen.availWidth - window.outerWidth) / 2;
var top = window.screenTop;
// move the window to the calculated position
window.moveTo(left, top);
- 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;
Leave a Reply