Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would to use a callback function in the same 'class' when the ajax request is successful. Here's the code

$.ajax({
   type: 'get',
   url: ajax_url,
   success: this.callback
})

this.callback = function() {

  // ERROR! this doesn't point to the right context!
  this.run_some_process();

}

Are there any built-in JavaScript constructs that can allow me to get or save the correct context, without having to resort to a custom delegate function?

share|improve this question

2 Answers

up vote 0 down vote accepted

Have a look at $.ajax's 'context' option.

share|improve this answer

If I understand your question correctly.

var that = this;

$.ajax({
   type: 'get',
   url: ajax_url,
   success: that.callback
})

that.callback = function() {
  // ERROR! this doesn't point to the right context!
  that.run_some_process();

}
share|improve this answer

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.