โ Back to HTML DOM
Question 145
Remove an Attribute
Remove an Attribute
The button with id="submitBtn" starts disabled. Remove itsdisabledattribute withremoveAttribute()so the button becomes clickable again. Platform-Provided HTML (READ-ONLY): <button id="submitBtn" disabled>Submit</button> Steps: 1. Select the button withdocument.getElementById(). 2. CallremoveAttribute("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.