Skip to content

Instantly share code, notes, and snippets.

@fhdalikhan
Created October 11, 2020 22:08
Show Gist options
  • Save fhdalikhan/5765571d2571d512d5cbb2a5a4bed0c7 to your computer and use it in GitHub Desktop.
Save fhdalikhan/5765571d2571d512d5cbb2a5a4bed0c7 to your computer and use it in GitHub Desktop.
jQuery Disable Button
jQuery.fn.extend({
disable: function(state) {
return this.each(function() {
this.disabled = state;
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment