jQuery Can Provide Queue-Based Promise Objects

Posted October 24, 2011 at 10:23 AM by Ben Nadel

Tags: Javascript / DHTML

Last week, I was looking up some Promise information in the jQuery API when I came across the .promise() fn-method. While I have worked with promises in the context of AJAX and explicit Deferred objects, it seems that jQuery provides implicit promise functionality around their queues and dequeuing functionality. This allows for promise objects to be returned for animations, which are, after all, nothing more than encapsulated "fx" queues.


 
 
 

 
  
 
 
 

By default, the animation methods in jQuery (animate(), slideDown(), slideUp(), etc.) return a reference to the jQuery object (in order to maintain method chaining). And traditionally, if you want to perform an action after an animation is complete, you have to provide some sort of callback as an argument or property of the animation configuration.

With the .promise() method, however, you can get a promise object that will be resolved once the animation is done. This provides for more readable code (in my opinion) with the option for multiple callback handlers. To see what I'm talking about, take a look at the following code. In this demo, we're going to hide and show a DIV and alter the "action text" once the animation has been completed.

  • <!DOCTYPE html>
  • <html>
  • <head>
  • <title>jQuery Can Provide Queue-Based Promise Objects</title>
  •  
  • <style type="text/css">
  •  
  • div.container > div.buffer {
  • background-color: #E0E0E0 ;
  • border: 1px solid #CCCCCC ;
  • height: 200px ;
  • padding: 10px 10px 10px 10px ;
  • }
  •  
  • </style>
  • </head>
  • <body>
  •  
  • <h1>
  • jQuery Can Provide Queue-Based Promise Objects
  • </h1>
  •  
  • <p>
  • <a href="#" class="action">
  • <span class="intent">Hide</span> Div
  • </a>
  • </p>
  •  
  • <div class="container">
  • <div class="buffer">
  •  
  • Hello, I am a div! How you like me now?
  •  
  • </div>
  • </div>
  •  
  •  
  • <!-- Include scripts. -->
  • <script type="text/javascript" src="./jquery-1.6.4.js"></script>
  • <script type="text/javascript">
  •  
  •  
  • // Get a reference to some DOM elements.
  • var action = $( "a.action" );
  • var actionIntent = action.find( "span.intent" );
  • var container = $( "div.container" );
  •  
  • // Hook up the click action.
  • action.click(
  • function( event ){
  •  
  • // Prevent the real event - not a true link.
  • event.preventDefault();
  •  
  • // Check to make sure we're not currently animating
  • // the DIV.
  • if (container.is( ":animated" )){
  •  
  • // Let the animation continue before the action
  • // link becomes a viable action.
  • return;
  •  
  • }
  •  
  • // Toggle the container. When implementing this
  • // animation, get a PROMISE object for the animating
  • // DOM element so that we can attach completion
  • // handlers to it.
  • var promise = container.slideToggle().promise();
  •  
  • // When the animation is done, update the text within
  • // the action link.
  • promise.done(
  • function(){
  •  
  • // Set the text of the action intent.
  • if (container.is( ":visible" )){
  •  
  • actionIntent.text( "Hide" );
  •  
  • } else {
  •  
  • actionIntent.text( "Show" );
  •  
  • }
  •  
  • }
  • );
  •  
  • }
  • );
  •  
  •  
  • </script>
  •  
  • </body>
  • </html>

As you can see, we are using the .slideToggle() method for animation. However, after we call the slideToggle() method, we are chaining it with the promise() method:

  • var promise = container.slideToggle().promise();

This returns a promise object rather than the jQuery object. Once we have the promise object, we can start to attach completion handlers using the done() method. This allows us to invoke zero or more callbacks once the animation has completed.

The documentation for the .promise() method doesn't mention anything about fail() outcomes. In my testing, I found that calling stop() on an animation did not trigger a fail() callback handler. However, if I called stop() and included the jump-to-end parameter, the done() callbacks would be invoked. So, it looks as if the only viable callback collection will be that of a successful completion.

Using .promise() with jQuery animation is not revolutionary. It doesn't provide any completely new functionality. What it does provide is a way to define callbacks in an easier, more readable, more flexible way. Also, when you consider the $.when() method, queue-based promise objects make it much easier to coordinate multiple animations.




Reader Comments

Oct 24, 2011 at 11:11 AM // reply »
3 Comments

This is cool because other methods to deal with the timing would involve timeouts, but due to congestion in the single-threaded JS execution order events could trigger out of synch and this removes that problem. Cool!


Oct 25, 2011 at 8:57 AM // reply »
10,743 Comments

@Randy,

I think the animation queue still works with timeouts under the hood; but the nice thing about this is that it will work with custom made queues as well.


Jan 5, 2012 at 2:26 PM // reply »
33 Comments

I'm going to try to use this method with executeSql commands.

"After you're done dropping the table, create the table".
"After you're done creating the table, insert into the table".

http://stackoverflow.com/questions/8748473/jquery-promise-deferred


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 21, 2012 at 1:58 AM
Updated: Converting A ColdFusion Query To CSV Using QueryToCSV()
Hi Ben, why do you need to have so many double quotes when adding the field and field name to the row data? ----------------------------------------- <cfset LOCAL.RowData[ LOCAL.ColumnIndex ] = ... read »
AXL
May 21, 2012 at 1:24 AM
URL Rewriting And ColdFusion's WriteToBrowser Image Functionality (CFFileServlet)
@Mounir, Open your lower case URL Rewrite rule and add the following condition. Condition input: {REQUEST_URI} Check if input string: Does Not Match the Pattern Pattern: ^/CFFileServlet/_cf_ca ... read »
May 20, 2012 at 4:28 AM
Understanding The Complex And Circular Relationships Between Objects In JavaScript
@Will Vaughn I tried your javascript example but got this error:- foo.print is not a function ... read »
May 19, 2012 at 5:37 AM
A Graphical Explanation Of Javascript Closures In A jQuery Context
Thanks for this article, but I fear you missed an important point. If variables in the outer context change, these changes affect the inner anonymous functions as well. That means: if you change the ... read »
May 18, 2012 at 3:39 PM
Parsing CSV Data With An Input Stream And A Finite State Machine
Can you use file upload button with this? and read live? or does the file have to already be on the server saved? ... read »
May 18, 2012 at 1:06 AM
VIRGO (Aug. 23-Sept. 22): Dead On The Money!
A friend of mine and I were arguing about astrology and she told me that he believes in astrology. She hasn't provided me with any evidence that the belief makes any sense to me. She she been telling ... read »
May 17, 2012 at 11:32 PM
Using ColdFusion to Handle 404 Errors (Page Not Found) On Development Server
Very easy the configuration. I read a lot pages and I can't find the solution. I open the administrator and change this Administrator/server settings/Error Handlers/Missing Template Handler and p ... read »
May 17, 2012 at 3:13 PM
LOCAL Variables Scope Conflicts With ColdFusion Query of Queries
I never cease to be amazed that almost EVERY random CF issue I come across lands me on your site. Thank you for documenting your findings for the world. ... read »