Get X, Y Coordinates of an Image on Mouse Click or Mouse Move using jQuery

← PrevNext →

Images play a very important role while designing a website. Sometimes we add a wide range of images on a single web page. We embed multiple images in a single image to save load time of the web page. Finding the precise X and Y coordinates of an image in the stack using mouse click or mouse Move, eliminates guesswork.

We can find the X and Y coordinates using jQuery pageX and pageY events to locate the mouse position on the image or any element to be precise. We can get the location of the mouse either by hovering it over the image or by clicking the image.

The Markup

We will add a Sprite image in our web page, which has three small images embedded together in a single image file. We will also add a DIV element, which will show us the coordinates when we move, hover or click on the image.

👉 You can also get the X and Y coordinates (or position) of a HTML element using JavaScript properties.

<html>
<head>
    <title>X, Y Coordinates using jQuery</title>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
</head>
<body>
    <div style="width:300px;">
        <div><img src="sprite.png" alt="" /></div>
        <div style="padding-top:20px;">
            <div id="coord"></div>
        </div>
    </div>
</body>
</html>

Related: How to Re-Size an Image Using Asp.Net Without Destroying its Quality – C# and Vb.Net

The Script using Mouse Click

To get the precise X, Y coordinates of the image we will use jQuery offset() method to remove spaces between the window and image container. The DIV is acting as a container to the image. This way even if we add a little padding to the container, the coordinates of the image is precise.

<script>
    $(document).ready(function() {
        $('img').click(function(e) {
            var offset = $(this).offset();
            var X = (e.pageX - offset.left);
            var Y = (e.pageY - offset.top);
            $('#coord').text('X: ' + X + ', Y: ' + Y);
        });
    });
</script>

Click the below icons

Get x,y coordinates of image on mouse click using jQuery

Related: Dynamically add Image to a DIV Element using jQuery .appendTo() Method

The Script using Mouse Move
<script>
    $(document).ready(function() {
        $('img').on("mousemove", function(e) {
            var offset = $(this).offset();
            var X = (e.pageX - offset.left);
            var Y = (e.pageY - offset.top);
            $('#coord').text('X: ' + X + ', Y: ' + Y);
        });
    });
</script>

Demo - Hover the Mouse over the images

Get x,y coordinates of image on mouse click using jQuery

Conclusion

We have seen how x, y coordinates can be located in an image inside another image, in fact these properties are not confined to images only, you can try with other HTML elements like DIV or P.

Sprite images are a collection of multiple image bundled together in a single image. We will discuss about Image Sprites, its advantages and use with CSS, in another article very soon.

← PreviousNext →