Skip to content

Instantly share code, notes, and snippets.

@nirlanka
Created May 13, 2019 12:55
Show Gist options
  • Save nirlanka/21dc4c1b2d0432eb7976801072758d64 to your computer and use it in GitHub Desktop.
Save nirlanka/21dc4c1b2d0432eb7976801072758d64 to your computer and use it in GitHub Desktop.
Click to copy text (from table cell) in HTML with pure Javascript
const copyToClipboard = str => {
const el = document.createElement('textarea');
el.value = str;
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el);
};
document.addEventListener('click', (e) => {
if(e.target && e.target.nodeName== 'TD') {
copyToClipboard(e.target.innerHTML);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment