Search code snippets, questions, articles...

open link in new tab using javascript

window.open('https://devsheet.com', '_blank');

If you want to open a link in a new tab using javascript only you can use window.open() javascript method which will open link in a new tab if you pass the second parameter as '_blank' in window.open() method.

This is equivalent to appying target="_blank" to <a> tag to open link directly using HTML.

Search Index Data (The code snippet can also be found with below search text)

window.location.href with target _blank in javascript
Was this helpful?
0 Comments
Programming Feeds
Learn something new everyday on Devsheet