Skip to content

Instantly share code, notes, and snippets.

@travismillerweb
Created August 27, 2014 17:52
Show Gist options
  • Save travismillerweb/2862eb8bacbbd3cc3da4 to your computer and use it in GitHub Desktop.
Save travismillerweb/2862eb8bacbbd3cc3da4 to your computer and use it in GitHub Desktop.
JS - Redirects & window.open script
/*
JS - Redirects & window.open script
Reference URL: http://davidwalsh.name/window-open
(Thanks David Walsh!)
*/
someElement.addEventListener('click', function(e) {
var url = someElement.get('data-url');
if(e.metaKey || e.ctrlKey) {
window.open(url);
}
else {
window.location = url;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment