$('#send').click(function() { var that = this; $(that).attr('disabled', true); $.post('page.php', {id: 123}, function(a) { $(that).removeAttr('disabled'); }); });