Is there any other way to do it than this? Could I somehow pass the original element to the callback function?
$('.abc a').click(function() {
var tmp = $(this);
$.get('/abc', {id: '1'}, function(data) {
tmp.next().html(data);
});
return false;
});

