javascript

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.

Was this helpful?