CJCoding With Joseph

Open a Link in a New Tab

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