Open In App
Related Articles

HTML | DOM MouseEvent pageX Property

Improve Article
Improve
Save Article
Save
Like Article
Like

The MouseEvent pageX property is a read-only property and used for returning the horizontal coordinate of the mouse pointer when an event has triggered.

Syntax:

event.pageX

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

Below program illustrates the MouseEvent pageX property:

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




<!DOCTYPE html>
<html>
  
<head>
    <title>MouseEvent pageX Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
          
        h2 {
            font-family: Impact;
        }
          
        body {
            text-align: center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>MouseEvent pageX Property Property</h2>
  
    <p onclick="coord(event)">
      Click somewhere in the paragraph to get 
      the x(horizontal) coordinates of the 
      mouse pointer when it was clicked.</p>
  
    <p id="test"></p>
  
    <script>
        function coord(event) {
            
            var x = event.pageX;
            var coords = "X coordinates: " + x;
            document.getElementById(
              "test").innerHTML = coords;
        }
    </script>
  
</body>
  
</html>


Output:

  • Before clicking the button:
  • After clicking the button

Supported Browsers:

  • Opera
  • Internet Explorer
  • Google Chrome
  • Firefox
  • Apple Safari

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 31 Jan, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials