JQuery Deferred And Promise - Error: Object Doesn't Support Property Or Method 'then'
I'm probably missing something really basic here but I can't seem to find the error and it's getting frustrating. I'm just trying to pull the lists (and then items, but one thing a
Solution 1:
promise
is a function and you're not calling it.
return deferred.promise()
Will fix that.
Post a Comment for "JQuery Deferred And Promise - Error: Object Doesn't Support Property Or Method 'then'"