Skip to content

Instantly share code, notes, and snippets.

@rabbitix
Created October 7, 2020 09:26
Show Gist options
  • Save rabbitix/f8566332da5e65da8f9a5e181ef06502 to your computer and use it in GitHub Desktop.
Save rabbitix/f8566332da5e65da8f9a5e181ef06502 to your computer and use it in GitHub Desktop.
copy to clipboard js
function copyDivToClipboard() {
var range = document.createRange();
range.selectNode(document.getElementById("toCopy"));
window.getSelection().removeAllRanges(); // clear current selection
window.getSelection().addRange(range); // to select text
document.execCommand("copy");
window.getSelection().removeAllRanges();// to deselect
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment