Skip to content

Instantly share code, notes, and snippets.

@onozaty
Last active August 25, 2018 15:29
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 onozaty/432f19c928b0dfb33c4eaed9b1bed7e9 to your computer and use it in GitHub Desktop.
Save onozaty/432f19c928b0dfb33c4eaed9b1bed7e9 to your computer and use it in GitHub Desktop.
var copyUrl = (e) => {
e.clipboardData.setData('text/plain', document.title + ' ' + location.href);
e.preventDefault();
document.removeEventListener('copy', copyUrl);
}
document.addEventListener('copy', copyUrl);
document.execCommand('copy');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment