Skip to content Skip to sidebar Skip to footer

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'"