jQuery stop() stop all

Description

jQuery stop() stop all

View in separate window

<!DOCTYPE html>
<html>
<head>
<script 
 src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>/*from  w  w w .  j  a  va  2s .  c om*/
<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);
  });
});
</script>
</head>
<body>

<p>
<button id="start">Start Animation</button>
<button id="stop">Stop All Queued Animations</button>
</p>

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

</body>
</html>



PreviousNext

Related