Created
June 5, 2016 10:23
-
-
Save nicolashohm/d08bdc0b9b8749201472ca95a9ad29f0 to your computer and use it in GitHub Desktop.
Copy custom data into the clipboard on copy event
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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