Skip to content

Instantly share code, notes, and snippets.

@nicolashohm
Created June 5, 2016 10:23
Show Gist options
  • Save nicolashohm/d08bdc0b9b8749201472ca95a9ad29f0 to your computer and use it in GitHub Desktop.
Save nicolashohm/d08bdc0b9b8749201472ca95a9ad29f0 to your computer and use it in GitHub Desktop.
Copy custom data into the clipboard on copy event
document.addEventListener('copy', function(e) {
e.clipboardData.setData('text/plain', 'Foo');
e.preventDefault();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment