Skip to content

Instantly share code, notes, and snippets.

View prasofty's full-sized avatar

Prasanna Kumar prasofty

  • Hyderabad, India
View GitHub Profile
@prasofty
prasofty / gist:2487410
Created April 25, 2012 06:43
Disable remote links after click in rails 3
$('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');
});