Answers for "how to open a new tab when clicking a link in html"

3

button open link in new tab

<button class="btn btn-success" onclick=" window.open('http://google.com','_blank')"> Google</button>
Posted by: Guest on May-25-2021
1

open new tab when clicking link html

<!-- add target="_blank" to open new tab when link is clicked [in HTML]-->
<a href="YourLink" target="_blank">YourText</a>
Posted by: Guest on January-07-2021
9

how to make a link in html that opens in a new tab

add attribute : target = "_blank"
Posted by: Guest on June-07-2020
-1

open link in new tab

<a href="The link of the page" target="_blank">Open page in new tab</a>
Posted by: Guest on October-17-2020

Code answers related to "how to open a new tab when clicking a link in html"

Browse Popular Code Answers by Language