Skip to content

Instantly share code, notes, and snippets.

@avaforvr
Created November 27, 2020 13:52
Show Gist options
  • Save avaforvr/f4474ed28ac565d4f2ef0f0275837e2b to your computer and use it in GitHub Desktop.
Save avaforvr/f4474ed28ac565d4f2ef0f0275837e2b to your computer and use it in GitHub Desktop.
const a = document.createElement('a');
a.setAttribute('href', 'https://www.baidu.com');
a.setAttribute('target', '_blank');
document.body.appendChild(a);
a.click();
a.parentNode && a.parentNode.removeChild(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment