โ Back to HTML DOM
Question 133
Set a Tooltip Title
Set a Tooltip Title
Select the button with id="delBtn" and set itstitleattribute to "Delete this item" so it shows a tooltip on hover. Platform-Provided HTML (READ-ONLY): <button id="delBtn">X</button> Steps: 1. Select the button withdocument.getElementById(). 2. Set itstitleproperty to "Delete this item".
Expected Output:
<button id="delBtn" title="Delete this item">X</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.