jQuery finish()

Introduction

Finish the currently running animation:

View in separate window

<!DOCTYPE html>
<html>
<head>
<script 
 src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>//w w  w . ja  va  2 s .c o  m
<script>
$(document).ready(function(){
  $("#start").click(function(){
    $("div").animate({height: 300}, 3000);
    $("div").animate({width: 300}, 3000);
  });
  $("#complete").click(function(){
    $("div").finish();
  });
});
</script>
</head>
<body>

<p>
<button id="start">Start Animation</button>
<button id="complete">Finish Current Animation</button>
</p>

<div style="background:red;height:100px;width:100px"></div>

</body>
</html>

The finish() method does the following:

  • stops the currently-running animations,
  • removes all queued animations, and
  • completes all animations for the selected elements.
$(selector).finish(queueName)
ParameterOptional Description
queueName Optional. name of the queue to stop animations



PreviousNext

Related