Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open New Tab and Close the Current Tab

Is there any easy work around to close the current tab and open a new tab by javascript?

like image 321
Subash L Avatar asked Jan 08 '23 17:01

Subash L


2 Answers

Try below :

window.open('http://www.google.com','_blank');window.setTimeout(function(){this.close();},1000)
like image 134
Nikhil Maheshwari Avatar answered Jan 18 '23 02:01

Nikhil Maheshwari


you can use location.replace for same goal:

window.location.replace('https://stackoverflow.com/');

https://developer.mozilla.org/en-US/docs/Web/API/Location/replace

like image 21
Muhammed Moussa Avatar answered Jan 18 '23 02:01

Muhammed Moussa