Skip to content

Instantly share code, notes, and snippets.

@DarrylErentzen
Created March 27, 2014 20:35
Show Gist options
  • Save DarrylErentzen/9818026 to your computer and use it in GitHub Desktop.
Save DarrylErentzen/9818026 to your computer and use it in GitHub Desktop.
disable submit button on click
jQuery('input:submit').click(function(){
jQuery('input:submit').val("Form submiting.....");
jQuery('input:submit').attr("disabled", true);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment