Skip to content

Instantly share code, notes, and snippets.

@nobodyzzz
Created April 21, 2010 22:18
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 nobodyzzz/374477 to your computer and use it in GitHub Desktop.
Save nobodyzzz/374477 to your computer and use it in GitHub Desktop.
var Clipboard = {
copy: function(data) {
var textArea = document.createElement("textarea");
textArea.style.position = "absolute";
textArea.style.left = "-100%";
textArea.value = data;
document.body.appendChild(textArea);
textArea.select();
document.execCommand("Copy");
document.body.removeChild(textArea);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment