javascript - Open New Tab and Close the Current Tab -


is there easy work around close current tab , open new tab javascript?

try below :

window.open('http://www.google.com','_blank');window.settimeout(function(){this.close();},1000) 

Comments

Popular posts from this blog

javascript - Trigger mouseenter when an animated element touches mouse -

json - Zend error Connection -

java - Using Spring @Transactional with a combination of readOnly and write, when does this entity get committed? -