- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery dequeue() with Examples
The dequeue() method in jQuery is used to remove the next function from the queue and then execute the function.
Syntax
The syntax is as follows −
$(selector).dequeue(queue)
Above, the queue is the name of the queue.
Example
Let us now see an example to implement the jQuery dequeue() method −
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ var div = $("div"); div.animate({height: 250}, "slow"); div.animate({left: "+=200",top: "+=100" }, "slow"); div.queue(function(){ div.dequeue(); }); div.animate({height: 150}, "slow"); div.animate({left: "10",top: "100" }, "slow"); }); }); </script> <style> div { width:150px; height:150px; position:absolute; left:10px; top:100px; background-color:orange; } </style> </head> <body> <button>Begin</button> <div></div> </body> </html>
Output
This will produce the following output −
Now, click “Begin” −
Now, since we have used dequeue in a way, the animation looks like the initial formation −
- Related Articles
- jQuery clearQueue() with Examples
- jQuery remove() with Examples
- jQuery detach() with Examples
- jQuery stop() with Examples
- jQuery siblings() with Examples
- jQuery slideUp() with Examples
- jQuery queue() with Examples
- jQuery delay() with Examples
- jQuery hide() with Examples
- jQuery replaceWith() with Examples
- jQuery position() with Examples
- jQuery prop() with Examples
- jQuery ready() with Examples
- jQuery replaceAll() with Examples
- jQuery load() with Examples

Advertisements