Skip to content

Instantly share code, notes, and snippets.

@marcusandre
Last active October 10, 2015 10:57
Show Gist options
  • Save marcusandre/290b7fe7de72fa963fa6 to your computer and use it in GitHub Desktop.
Save marcusandre/290b7fe7de72fa963fa6 to your computer and use it in GitHub Desktop.
Quickly open a link in a new tab
function openTab (url, method) {
var m = method || '_blank'
var w = window.open(url, m)
w.focus()
}
openTab('https://google.com/')
@marcusandre
Copy link
Author

remember: browser assumes a pop up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment