wswilson Tue, 05 Feb 2008 11:41:18 -0800
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; });