Answers for "disabling a button in javascript"

CSS
19

javascript how to disable a button

//Using Javascript
//Disabling a html button

document.getElementById("Button").disabled = true;
//Enabling a html button

document.getElementById("Button").disabled = false;


//Using jQuery
//Disabling a html button

$('#Button').attr('disabled','disabled');
//Enabling a html button

$('#Button').removeAttr('disabled');
Posted by: Guest on November-28-2019
7

javascript disable button

document.getElementById(BUTTON_ID).disabled = true;
Posted by: Guest on January-24-2020
2

disable input type button in html

<input type="button" disabled value="Submit">
Posted by: Guest on November-26-2020
0

enable html button

$('#Button').prop('disabled', true);
Posted by: Guest on May-22-2020

Code answers related to "disabling a button in javascript"

Browse Popular Code Answers by Language