Answers for "open link in new tab on button click"

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
3

open new tab href

<a target="_blank" rel="noopener noreferrer" href="http://your_url_here.html">Link</a>
Posted by: Guest on June-01-2020

Code answers related to "open link in new tab on button click"

Browse Popular Code Answers by Language