Open In App

jQuery stop() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The stop() method is an inbuilt method in jQuery which is used to stop the currently running animations for the selected element. 

Syntax:

$(selector).stop(stopAll, goToEnd);

Parameters: This method accepts two parameters as mentioned above and described below:

  • stopAll: It is optional parameter and the value of this parameter is boolean. This parameter is used to specify whether or not to stop the queued animations as well. The default value of this parameter is false.
  • goToEnd: It is optional parameter and the value of this parameter is boolean. This parameter is used to specify whether or not to complete all animations immediately. The default value of this parameter is false.

Below examples illustrate the stop() method in jQuery: 
Example 1: This example does not contains any parameter. 

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>The stop Method</title>
    <script src=
    </script>
  
    <!-- jQuery code to show the working of this method -->
    <script>
        $(document).ready(function () {
            $("#gfg_start").click(function () {
                $("div").animate({
                    height: 300
                }, 1000);
                $("div").animate({
                    width: 300
                }, 1000);
            });
            $("#gfg_stop").click(function () {
                $("div").stop();
            });
        });
    </script>
    <style>
        div {
            background: green;
            height: 60px;
            width: 60px;
        }
  
        button {
            margin-bottom: 30px;
        }
    </style>
</head>
  
<body>
    <!-- click on this button and 
        animation will start -->
    <button id="gfg_start">Start</button>
    <!-- click on this button and 
        animation will stop -->
    <button id="gfg_stop">Stop</button>
    <div></div>
</body>
  
</html>


Output:

 

Example 2: This example contains parameter. 

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title> The stop Method</title>
    <script src=
    </script>
  
    <script>
        $(document).ready(function () {
            var div = $("div");
            $("#start").click(function () {
                div.animate({
                    height: 280
                }, "slow");
                div.animate({
                    width: 280
                }, "slow");
                div.animate({
                    height: 120
                }, "slow");
                div.animate({
                    width: 120
                }, "slow");
            });
            $("#stop").click(function () {
                div.stop(true, true);
            });
        });
    </script>
    <style>
        div {
            background: green;
            height: 100px;
            width: 100px;
        }
  
        button {
            margin-bottom: 30px;
        }
    </style>
</head>
  
<body>
    <!-- click on this button and 
        animation will start -->
    <button id="start">Start </button>
    <!-- click on this button and 
        animation will stop -->
    <button id="stop">Stop </button>
    <div></div>
</body>
  
</html>


Output:

 



Last Updated : 18 Nov, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads