HTML | Window screenLeft Property
The Window screenLeft property is used for returning the ‘x’ or horizontal coordinate of a window relative to a screen. It returns a number which represents the horizontal coordinate of a window relative to a screen.
Syntax:
window.screenLeft
Below program illustrates the Window screenLeft Property :
Getting the horizontal coordinate of a window relative to a screen.
<!DOCTYPE html> < html > < head > < title > Window screenLeft Property in HTML </ title > < style > h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >Window screenLeft Property</ h2 > < p > For returning the X coordinates of a window relative to the screen, double click the "Check Screen Left" button: </ p > < button ondblclick = "coordinate()" > Check Screen Left </ button > < script > function coordinate() { var x = window.open("", "myWindow"); x.document.write ("< p >Welcome to my Window"); x.document.write ("< br > ScreenLeft : " + x.screenLeft); } </ script > </ body > </ html > |
Output:
After clicking the button
Supported Browsers: The browser supported by Window screenLeft Property are listed below:
- Google Chrome
- Internet Explorer
- Opera
- Safari
Recommended Posts:
- HTML | Window top( ) Property
- HTML | Window name Property
- HTML | Window self( ) Property
- HTML | Window innerWidth Property
- HTML | Window pageXOffset Property
- HTML | Window pageYOffset Property
- HTML | Window length Property
- HTML | DOM Window parent Property
- HTML | DOM Window status Property
- HTML | Window innerHeight Property
- HTML | Window screenX Property
- HTML | Window sessionStorage( ) Property
- HTML | DOM Window closed Property
- HTML | Window outerWidth Property
- HTML | Window screenTop Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.