A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-dom-mouseevent-screeny-property/ below:

HTML | DOM MouseEvent screenY Property

HTML | DOM MouseEvent screenY Property

Last Updated : 14 Jul, 2022

The MouseEvent screenY property is a read-only property and used for returning the vertical coordinate of the mouse pointer when an event was triggered. 

Syntax :

event.screenY

Return Value: It returns a number which represents the vertical coordinate of the mouse pointer in pixels. 

Below program illustrates the MouseEvent screenY property: 

Example: Finding out the horizontal coordinates of the mouse pointer, relative to the screen, when the mouse button is clicked on an element. 

HTML
<!DOCTYPE html>
<html>

<head>
    <title>MouseEvent screenY Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
        
        h2 {
            font-family: Impact;
        }
        
        body {
            text-align: center;
        }
    </style>
</head>

<body>

    <h1>GeeksforGeeks</h1>
    <h2>MouseEvent screenY Property</h2>

    <p onclick="coord(event)">
      Click somewhere in the paragraph to get
      the y(vertical) coordinates of the mouse pointer.
  </p>

    <p id="test"></p>

    <script>
        function coord(event) {
          
            var y = event.screenY;
            var coords = " Y coords: " + y;
            document.getElementById(
              "test").innerHTML = coords;
        }
    </script>

</body>

</html>

Output:

Supported Browsers:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4