CJCoding With Joseph

Remove an Attribute

The button with id="submitBtn" starts disabled. Remove its disabled attribute with removeAttribute() so the button becomes clickable again.

Platform-Provided HTML (READ-ONLY):
<button id="submitBtn" disabled>Submit</button>

Steps:
1. Select the button with document.getElementById().
2. Call removeAttribute("disabled").

Expected Output:

<button id="submitBtn">Submit</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.