Skip to content

Instantly share code, notes, and snippets.

@Ser-Gen
Created October 29, 2014 10:59
Show Gist options
  • Save Ser-Gen/dfdfeca9c7aac02d1548 to your computer and use it in GitHub Desktop.
Save Ser-Gen/dfdfeca9c7aac02d1548 to your computer and use it in GitHub Desktop.
Открывает произвольную ссылку в новой вкладке
function openInNewTab(href) {
var a = document.createElement('a');
a.setAttribute('href', href);
a.setAttribute('target', '_blank');
document.body.appendChild(a);
a.click();
a.outerHTML = '';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment