โ Back to HTML DOM
Question 144
Disable a Button
Disable a Button
Select the button with id="saveBtn" and disable it by setting itsdisabledproperty totrue. Platform-Provided HTML (READ-ONLY): <button id="saveBtn">Save</button> Steps: 1. Select the button withdocument.getElementById(). 2. Set itsdisabledproperty totrue.
Expected Output:
<button id="saveBtn" disabled>Save</button>
Topics:
HTML DOM
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.