Skip to content

Instantly share code, notes, and snippets.

@michaeljonathanblack
Created June 27, 2017 22:21
Show Gist options
  • Select an option

  • Save michaeljonathanblack/f3e404ae7e57edb6c92a99a050dda263 to your computer and use it in GitHub Desktop.

Select an option

Save michaeljonathanblack/f3e404ae7e57edb6c92a99a050dda263 to your computer and use it in GitHub Desktop.
function disableButton(el) {
$(el).prop('disabled', true);
}
function enableButton(el) {
$(el).prop('disabled', false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment