CJCoding With Joseph

Disable a Button

Select the button with id="saveBtn" and disable it by setting its disabled property to true.

Platform-Provided HTML (READ-ONLY):
<button id="saveBtn">Save</button>

Steps:
1. Select the button with document.getElementById().
2. Set its disabled property to true.

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.