Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm curious, what are the intentions of the jqXHR wrapper? Is there something about it that improves development?

share|improve this question

1 Answer

up vote 7 down vote accepted

It implements XHR-like functionality for non-XHR transports (think JSONP, etc.) Also, it allows you do to Promises. The best place to read up on this is right in the docs: http://api.jquery.com/jQuery.ajax/#jqXHR

share|improve this answer
Ya, I've read that page... was more or less looking at a benefit analysis. It essentially looks like the "Promises" interface is a way to object orient the ajax response? – Chad Feb 10 '11 at 0:33
1  
@Chad - Like many other things jQuery, it is primarily to abstract away what otherwise requires a lot of browser-specific code. – Christian Aug 30 '11 at 11:59
@Christian, thanks! That is a very good thing. I've since begun using it, and I'm really digging it. – Chad Aug 30 '11 at 13:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.