CJCoding With Joseph

Set Input Placeholder Text

Select the input with id="nameInput" and set its placeholder attribute to "Enter your name".

Platform-Provided HTML (READ-ONLY):
<div id="form">
  <input id="nameInput" type="text">
</div>

Steps:
1. Select the input with document.getElementById().
2. Set its placeholder property to "Enter your name".

Expected Output:

<div id="form">
  <input id="nameInput" type="text" placeholder="Enter your name">
</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.