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.

This is an example code from the prototype site.

var url = '/proxy?url=' + encodeURIComponent('http://www.google.com/search?q=Prototype');
// notice the use of a proxy to circumvent the Same Origin Policy.

new Ajax.Request(url, {
  method: 'get',
  onSuccess: function(transport) {
    var notice = $('notice');
    if (transport.responseText.match(/href="http:\/\/prototypejs.org/))
      notice.update('Yeah! You are in the Top 10!').setStyle({ background: '#dfd' });
    else
      notice.update('Damn! You are beyond #10...').setStyle({ background: '#fdd' });
  }
});

The data that comes from the ajax request is available at transport.responseText, but what is transport if not only responseText?

share|improve this question

1 Answer

up vote 2 down vote accepted

Actually, it's a Ajax.Response object. The linked page lists all the other properties. It's a wrapper around the actual XMLHttpRequest object.

share|improve this answer
You're right, it's a simple wrapper with slightly friendlier method names like getHeader instead of getResponseHeader. – karim79 Jun 24 '09 at 10:36
It's not just friendlier names. It adds the JSON stuff, and has different behavior when there are no headers. – Matthew Flaschen Jun 24 '09 at 11:38

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.