Question

I need to check whether a object is Deferred or not using Jquery, how to check that?

Thanks in advance,

Madhu

Was it helpful?

Solution

The logic used internally by jQuery's when() method is

if(object && $.isFunction( object.promise )){
}

src: deferred.js

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top