Thursday, September 4, 2025
HomeLanguagesJavascriptjQuery finish() Method

jQuery finish() Method

The finish() is an inbuilt method in jQuery which is used to stop the animations running at the present time.
Syntax:

$(selector).finish();

Parameter: It does not accept any parameter.
Return Value: It returns the selected element with its final values.

jQuery code to show the working of finish() method:




<html>
   
<head>
    <script 
    </script>
    <script>
        <!-- jQuery code to show the working of this method -->
        $(document).ready(function() {
            $("#b1").click(function() {
                $("div").animate({
                    height: 200
                }, 4000);
                $("div").animate({
                    width: 200
                }, 4000);
            });
            $("#b2").click(function() {
                $("div").finish();
            });
        });
    </script>
    <style>
        div {
            background: green;
            height: 100px;
            width: 100px;
            padding: 30px;
        }
    </style>
</head>
   
<body>
   
    <div></div>
   
    <p>
        <!-- this button will start the animation -->
        <button id="b1">Start </button>
        <!-- this button will finish the animation -->
        <button id="b2">Stop</button>
    </p>
   
</body>
   
</html>


Output:
Before clicking on the “Start” button-

After clicking on the start button animation will start with its specified speed and when stop button is clicked then it immediately finish the animation and return the element to its final height and width value.

RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11797 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6715 POSTS0 COMMENTS