$('div.rating').click(function() { $.ajax({ type: 'GET', url: 'http://server.com/ahah_results', datatype: 'json', success: function( data ){ this.find('span').html(data.value); }, data: 'id=23812', context: $(this) }); });