Skip to content

Instantly share code, notes, and snippets.

@ryasmi
Last active January 11, 2016 00:34
Show Gist options
  • Save ryasmi/6564c3c2d08953a5f0b5 to your computer and use it in GitHub Desktop.
Save ryasmi/6564c3c2d08953a5f0b5 to your computer and use it in GitHub Desktop.
var copy = function (text) {
var range = document.createRange();
var elem = document.createElement('div');
var parent = document.createElement('div');
window.getSelection().removeAllRanges();
elem.innertText = text;
parent.appendChild(elem);
range.selectNode(elem);
window.getSelection().addRange(range);
document.execCommand('copy');
window.getSelection().removeAllRanges();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment