Skip to content

Instantly share code, notes, and snippets.

@culttm
Created April 15, 2016 08:22
Show Gist options
  • Save culttm/60e8b105c404c1082f9b5ae6739754d6 to your computer and use it in GitHub Desktop.
Save culttm/60e8b105c404c1082f9b5ae6739754d6 to your computer and use it in GitHub Desktop.
Simple clipboard function
function clip(text) {
var copyElement = document.createElement('input');
copyElement.setAttribute('type', 'text');
copyElement.setAttribute('value', text);
copyElement = document.body.appendChild(copyElement);
copyElement.select();
document.execCommand('copy');
copyElement.remove();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment