Skip to content

Instantly share code, notes, and snippets.

@Ravenna
Created October 1, 2019 20:13
Show Gist options
  • Save Ravenna/a0be8638dcaddff2c7549d68eca6bdef to your computer and use it in GitHub Desktop.
Save Ravenna/a0be8638dcaddff2c7549d68eca6bdef to your computer and use it in GitHub Desktop.
$('form').submit(function(e){
var button = $(this).find('button[type="submit"]');
var text = button.text();
var loader = '../images/spinner.gif';
button.attr("disabled", true);
button.text('').append('<img src="/static/images/spinner-solid.svg" class="spinner" alt="loader">')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment