I have a file path which when I use in href attribute of anchor tag, it is working but when I use in window.open(), it is not working can anyone give solution. It is urgent!!!
1/21/2022 3:46:27 AM
ℋℜҜ3 Answers
New Answer// init urls let newUrl = 'http://example.com'; let currentUrl = window.location.href; // open window with url of current page, you will be automatically moved // by browser to a new opened tab. It will look like your page is reloaded // and you will stay on same page but with new page opened window.open(currentUrl , '_blank'); // on your current tab will be opened new url location.href = newUrl;
Sololearn Inc.
535 Mission Street, Suite 1591Send us a message