Create instantly-resolved jQuery.Deferred objects
Quick way to create an instance of jQuery.Deferred that is already resolved with a specific value:
var instantDeferred = $.when("result")
instantDeferred.state(); // => "resolved"
instantDeferred.done(function(data) {
console.log(data);
};
// => "result"
Written by Stephen Greatrex
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Jquery
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#