โ Back to HTML DOM
Question 126
Set Input Placeholder Text
Set Input Placeholder Text
Select the input with id="nameInput" and set itsplaceholderattribute to "Enter your name". Platform-Provided HTML (READ-ONLY): <div id="form"> <input id="nameInput" type="text"> </div> Steps: 1. Select the input withdocument.getElementById(). 2. Set itsplaceholderproperty 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.