SyntaxFix
Write A Post
Hire A Developer
Questions
I have created a function that allows me to obtain this feature:
function redirect_blank(url) { var a = document.createElement('a'); a.target="_blank"; a.href=url; a.click(); }