CJCoding With Joseph

Set a Tooltip Title

Select the button with id="delBtn" and set its title attribute 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 with document.getElementById().
2. Set its title property 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.