jQuery clearQueue()

Introduction

Stop the remaining functions in the queue:

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 av a2s .  c  o m
<script>
$(document).ready(function(){
  $("#start").click(function(){
    $("div").animate({height: 300}, 1500);
    $("div").animate({width: 300}, 1500);
    $("div").animate({height: 100}, 1500);
    $("div").animate({width: 100}, 1500);
  });
  $("#stop").click(function(){
    $("div").clearQueue();
  });
});
</script>
</head>
<body>

<button id="start">Start Animation</button>
<button id="stop">Stop Animation</button>
<br><br>

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

</body>
</html>

The clearQueue() method removes all pending items from the queue that have not yet been run.

The clearQueue() method can remove any queued functions.

$(selector).clearQueue(queueName)
Parameter Optional Description
queueName Optional.the name of the queue. The default is "fx", the standard effects queue



PreviousNext

Related