jQuery stop() stop all and go to end

Description

jQuery stop() stop all and go to end

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. j  ava2  s.  co m*/
<script>
$(document).ready(function(){
  let div = $("div");
  $("#start").click(function(){
    div.animate({height: 300}, "slow");
    div.animate({width: 300}, "slow");
    div.animate({height: 100}, "slow");
    div.animate({width: 100}, "slow");
  });
  $("#stop").click(function(){
    div.stop(true, true);
  });
});
</script>
</head>
<body>

<p>
<button id="start">Start Animation</button>
<button id="stop">Stop But Complete All Animations Immediately</button>
</p>

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

</body>
</html>



PreviousNext

Related