Open In App

jQuery offset() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The offset() method is an inbuilt method in jQuery which is used to set or returns the offset coordinates of the selected element.
Syntax:  

$(selector).offset()

  • Parameters: Parameter does not required.
$(selector).offset({top:value, left:value})

  • Parameters: The parameter is required when set the offset.
$(selector).offset( function(index, offset) )

  • Parameters: This method set the offset using function. The parameter used in this method is optional. The index parameter is used to return the position of set element and offset return the coordinate of selected element.

Return Value: This method returns the co-ordinate of matched elements.
Below examples illustrate the offset() method in jQuery:
Example 1: In the code below this will return the co-ordinate of the first matched element. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>The offset Method</title>
    <script src=
    </script>
 
    <!-- jQuery code to show the working of this method -->
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                let Geek = $("p").offset();
                alert("Top coordinate: " + Geek.top +
                    "   Left Coordinate: " + Geek.left);
            });
        });
    </script>
    <style>
        body {
            display: flex;
            justify-content: center;
        }
 
        div {
            width: 40%;
            min-height: 150px;
            padding: 20px;
            font-size: 25px;
            border: 2px solid green;
            font-weight: bold;
            color: green;
 
        }
    </style>
</head>
 
<body>
    <!-- Click on paragraph -->
    <div>
 
        <p>Welcome to GeeksforGeeks!</p>
 
        <button>click Here!</button>
    </div>
</body>
 
</html>


Output: 

jquery-18

Example 2: Here is the example of jQuery offset() method.

html




<!DOCTYPE html>
<html>
 
<head>
    <title>The offset Method</title>
    <script src=
    </script>
 
    <!-- jQuery code to show the working of this method -->
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $("p").offset({ top: 100, left: 140 });
            });
        });
    </script>
    <style>
        div {
            width: 300px;
            min-height: 100px;
            color: green;
            font-weight: bold;
            padding: 20px;
            font-size: 25px;
            border: 2px solid green;
        }
    </style>
</head>
 
<body>
    <div>
        <!-- Click on paragraph -->
        <p>Welcome to GeeksforGeeks!</p>
 
        <button>Click Here!</button>
    </div>
</body>
 
</html>


Output: 

jquery-19



Last Updated : 10 Jul, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads