$('a[data-remote=true]').live('ajax:before', function () { if ($(this).attr('ajax-loading')) { return false; } else { $(this).attr('ajax-loading', true); } }).live('ajax:complete', function () { $(this).removeAttr('ajax-loading'); });