CJCoding With Joseph
15per day

Change Button Text

Select the button with id="submitBtn" and change its text content to "Submit Form".

Platform-Provided HTML (READ-ONLY):
<div id="container">
  <button id="submitBtn">Click Here</button>
</div>

Steps:
1. Use document.getElementById() to select the button
2. Change its textContent property to "Submit Form"

Expected Output:

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