jQuery mousemove() Method (original) (raw)

Last Updated : 11 Jul, 2025

The jQuery mousemove() method is an inbuilt method which is used when mouse pointer moves over the selected element.

Syntax:

$(selector).mousemove(function)

Parameters: This method accepts single parameter function which is optional. This parameter is used to specify the function to run when the mousemove event is call.

Below examples illustrates the mousemove() method in jQuery:

Example 1: This example illustrates the use of mousemove() method.

HTML `

The mousemove Method
<!-- jQuery code to show the working of this method -->
<script>
    $(document).ready(function () {
        $("p").mousemove(function () {
            $("div").css("background-color", "lightgreen");
        });
    });
</script>
<style>
    div {
        width: 380px;
        padding: 20px;
        height: 60px;
        border: 2px solid green;
        font-weight: bold;
        font-size: 20px;
    }
</style>

Move over this paragraph.

`

Output:

Example 2: In this example, a pop-up will come out when we move the mouse over the paragraph.

HTML `

The mousemove Method
<!-- jQuery code to show the working of this method -->
<script>
    $(document).ready(function () {
        $("p").mousemove(function () {
            alert("Mouse moved over this paragraph");
        });
    });
</script>
<style>
    div {
        width: 380px;
        padding: 20px;
        height: 60px;
        border: 2px solid green;
        font-weight: bold;
        font-size: 20px;
    }
</style>

Move over this paragraph.

`

Output: