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

I tried to get the value of rel on each li and pass it to the .getJSON function. I then want to add the thumbnail_url value from the callback to the image tag of the li descendants . My question is how could I pass the $(this) object to the callback function. It seems the $(this) is null.

$('ul.sample li').each(function () {

        var url = 'http://sampleurl/api/url?' + $(this).attr('rel');

        $.getJSON(url, function (data){
            $(this).find('img').attr('src') = data.thumbnail_url;
    })
});

HTML:

<ul class="sample">
   <li rel="value1">
       <img src="">
   </li>
   <li rel="value2">
       <img src="">
   </li>
</ul>
share|improve this question
SyntaxError: Unexpected identifier(unexpected_token_identifier) – Musa May 22 '12 at 2:00
1  
Javascript closures strike again! – Spencer Ruport May 22 '12 at 2:02
Besides the original issue, you also have another problem: It should be var url = 'http://sampleurl/api/url?'+$(this).attr('rel'); – Steve May 22 '12 at 2:04

2 Answers

up vote 7 down vote accepted

Just assign it outside of the callback (like I am setting self) and then use inside callback (by referring to the variable you have set):

$('ul.sample li').each(function () {

    var self = $(this); // using self to store $(this)
    var url = 'http://sampleurl/api/url?' + self.attr('rel');

    $.getJSON(url, function (data) {
        // now retrieving self - it is accessible from the callback
        self.find('img').attr('src') = data.thumbnail_url;
    });

});

The reason for that is because this is different in callback for .each() than in callback for $.getJSON().

share|improve this answer
Just want to point out that you copied an error in the OPs code. It should be var url = 'http://sampleurl/api/url?'+$(this).attr('rel'); – Steve May 22 '12 at 2:02
@Steve: You are right, I indeed have copied OP's code by fixing what did not work for him. – Tadeck May 22 '12 at 2:04
Great! it is perfect. – seanbun May 22 '12 at 2:06
3  
@GlennFerrieLive What convention is that? While I also use that, I have seen both variables used in the wild a lot. jQuery itself uses self all over the place. – Steve May 22 '12 at 2:11
3  
@GlennFerrieLive, With respect, Crockford is not Always Right. In practice, you'll see self used as much as that to hold on to this. I prefer self since it has closer grammatical meaning to this than does that, and is therefore less confusing and more readable. – josh3736 May 22 '12 at 2:18
show 8 more comments

If you use $.ajax instead of $.getJSON, you could use the context option:

$('ul.sample li').each(function () {
    var url = 'http://sampleurl/api/url?' + $(this).attr('rel');
    $.ajax({
        url : url,
        dataType : 'json',
        context : this,
        complete : function (data) {
            // 'this' will be what you passed as context 
            $(this).find('img').attr('src') = data.thumbnail_url;
        }
    });
});
share|improve this answer
Brilliant. Glad to know this good alternative. – seanbun May 22 '12 at 2:17
Any other major difference between these $.ajax() and #.getJSON() functions? – seanbun May 22 '12 at 2:27
Well, $.ajax is more verbose, as you can see. On this example, I passed the options required to make it behave exactly like getJSON, but there are many other options available. $.get, $.post and $.getJSON are basically wrappers to $.ajax. – bfavaretto May 22 '12 at 2:30

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.