Skip to content

Instantly share code, notes, and snippets.

@jacksonpires
Created December 16, 2016 00:05
Show Gist options
  • Save jacksonpires/5181d376683b76dba2f443dbd21ad45e to your computer and use it in GitHub Desktop.
Save jacksonpires/5181d376683b76dba2f443dbd21ad45e to your computer and use it in GitHub Desktop.
Global AJAX Requests - Rails
$(document).ready(function() {
// Global ajax cursor change
$(document)
.ajaxStart(function () {
$('#global-spin').fadeIn('slow');
})
.ajaxStop(function () {
$('#global-spin').fadeOut('slow');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment