Enabled / Disable Button Control using javascript
By Super Man
Here i will show how you enable or disable any controls which supports disable/enable feature in javascript.
Enabled / Disabled Button using Javascript
For enable the button,
document.getElementById('Button1').disabled
= false;
For disable the button,
document.getElementById('Button1').disabled
= true;
Enabled / Disable Button Control using javascript (1719 Views)