C H A P T E R  35

Using Deferred Objects

Throughout this book, you have seen examples that relied on callbacks. You provide a function that is executed when something occurs. A good example is the way you have been handling events, where you call a method such as click, passing in a function as an argument. The code statements in the function are not performed until the user triggers the event. Until that point, your function is dormant.

Deferred objects is the jQuery term for a set of enhancements to the way you use callbacks. When using deferred objects, you can use callbacks in any situation and not just for events. You also gain a lot of options and control over when and how your callback functions are executed. Deferred objects are most ...

Get Pro jQuery now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.