how make button enable disable with js for all buttons code example

Example 1: 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');

Example 2: how to disable all buttons in javascript

$("input[type=button]").attr("disabled", "disabled");