Skip to content

Instantly share code, notes, and snippets.

@Munter
Created May 20, 2015 14:08
Show Gist options
  • Save Munter/24e37c2887021e15e5f7 to your computer and use it in GitHub Desktop.
Save Munter/24e37c2887021e15e5f7 to your computer and use it in GitHub Desktop.
Always open mailto: links in a new tab. Useful when using webmail clients as mailto: scheme handlers
document.body.addEventListener('focus', function (el) {
if (el.tagName === 'A' && (el.getAttribute('href') || '').indexOf('mailto:') === 0) {
el.setAttribute('target', '_blank');
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment