$('div.rating').each(function() {
$(this).click(function() {
var mydiv=$(this);
var voteResult = function(data) {
[B][U] mydiv.find('span').html(data.value);[/U][/B] //не работает!
};
$.ajax({
type: 'GET',
url: 'http://server.com/ahah_results',
datatype: 'json',
success: voteResult,
data: 'id=23812'
});
});
});