I have some divs created dynamically this way:
//here goes some loop, and everything works fine
$("#result_main_search").append('<div class="singleresult_main_search">
<a href="http://somesite.com/" class="linktosight">'
+ SightsList[i]+ '</a> – ' +
'<img src="/images/balloon.gif" rel="'+ i
+'" class="balloon_img_main_search" /></div>');
After that loop, I try to set href attribute for each link:
$('.singleresult_main_search').each(function() {
$.get("_ajax_get_sight_link.php", {'id':$("img", this).attr('rel')},
function(data) {
alert($(this).find('.linktosight').length);
$(this).find('a').attr('href', data);
alert(data);
});
})
_ajax_get_sight_data.php accepts id, returns link ( alert(data) works fine) .
But alert which tells how much .linktosight elements are in current div always gives 0 (by saying always I mean everytime it finds one of my generated divs). I've tried .size(), $(this).find('a') with the same result. So, how am I to set it to work?

jQuery.proxy()be of use, perhaps? – Jack Franklin Jul 1 '11 at 9:35'<div class="singleresult_main_search">and<a href="http://somesite.com/" class="linktosight">'? Because there shouldn't be – mplungjan Jul 1 '11 at 9:36thisto a variable and use that variable insidge $.get. – Niklas Jul 1 '11 at 9:36$(data)on the AJAX response to wrap it in a jQuery object, then use normal$(data).find('a').attr('href')to access the href property? – Chris Francis Jul 1 '11 at 9:39