I am diverting user to some url through window.location but this url opens in the same tab in browser. I want it to be open in new tab. Can I do so with window.location? Is there another way to do this action?
I am diverting user to some url through window.location but this url opens in
Share
I don’t think there’s a way to do this, unless you’re writing a browser extension. You could try using
window.openand hoping that the user has their browser set to open new windows in new tabs.