10 examples of 'javascript disable button after click' in JavaScript

Every line of 'javascript disable button after click' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
171function enableButton(button) {
172 $("#"+button).removeClass('btn-disable').addClass('btn-danger').attr("disabled", false);
173}
18function enable(){
19 $('a.easyui-linkbutton').linkbutton('enable');
20}
132function bindDisableButton() {
133 $(document).off("click", "button[operation='disable-job'][data-toggle!='modal']");
134 $(document).on("click", "button[operation='disable-job'][data-toggle!='modal']", function(event) {
135 var jobName = $(event.currentTarget).attr("job-name");
136 $.ajax({
137 url: "/api/jobs/" + jobName + "/disable",
138 type: "POST",
139 success: function() {
140 showSuccessDialog();
141 $("#jobs-status-overview-tbl").bootstrapTable("refresh");
142 }
143 });
144 });
145}
12function disable_all_buttons() {
13 $(":button").hide();
14}
18function disable_button (button) {
19 button.attr("disabled", "disabled");
20}
94function disable () {
95 $('textarea').addClass ( 'disabled' ).attr ( 'disabled', 'disabled' );
96}
482function toggleButtons(form, disable) {
483 form.find('[name="addWebhookBtn"]').attr('disabled', disable);
484 form.find('[name="testWebhookBtn"]').attr('disabled', disable);
485 form.find('[name="updateWebhookBtn"]').attr('disabled', disable);
486}
297function disableButtons(cell) {
298 $(cell).find('button').prop('disabled', true);
299}
58export function disableDelete(){
59 $(window).off("keydown.drawableDelete")
60}
9function disableButtons(ids) {
10 var btns = [];
11 $.each(ids, function() {
12 btns.push($('.' + this));
13 });
14 $.each(btns, function() {
15 this.attr('disabled', 'disabled');
16 });
17 return {
18 'enable' : function() {
19 $.each(btns, function() {
20 this.removeAttr('disabled');
21 })
22 }
23 }
24}

Related snippets