Skip to content

Instantly share code, notes, and snippets.

@nicoknoll
Created September 9, 2015 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicoknoll/549d0799906b15f2913a to your computer and use it in GitHub Desktop.
Save nicoknoll/549d0799906b15f2913a to your computer and use it in GitHub Desktop.
How to open a link in a new tab
var url = 'http://nico.is';
var win = window.open(url, '_blank');
win.focus();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment