Skip to content

Instantly share code, notes, and snippets.

@torholm
Created January 9, 2014 08:50
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 torholm/8331293 to your computer and use it in GitHub Desktop.
Save torholm/8331293 to your computer and use it in GitHub Desktop.
Stop annoying sites from inserting extra text into clipboard when copying
document.body.addEventListener("copy", function(ev) { ev.stopPropagation(); return false; }, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment