โ Back to HTML DOM
Question 134
Open a Link in a New Tab
Open a Link in a New Tab
Select the link with id="siteLink" and set itstargetattribute to "_blank" so it opens in a new tab. Platform-Provided HTML (READ-ONLY): <a id="siteLink" href="https://example.com">Visit</a> Steps: 1. Select the link withdocument.getElementById(). 2. Set itstargetproperty to "_blank".
Expected Output:
<a id="siteLink" href="https://example.com" target="_blank">Visit</a>
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.