Skip to content

Instantly share code, notes, and snippets.

@Reedef
Created November 29, 2017 14:03
Show Gist options
  • Save Reedef/b0d196d563598289614421fe7c2d77e0 to your computer and use it in GitHub Desktop.
Save Reedef/b0d196d563598289614421fe7c2d77e0 to your computer and use it in GitHub Desktop.
function copyToClipboard(element) {
var $temp = $("<textarea></textarea>");
$("body").append($temp);
$temp.text("aaaa").select();
document.execCommand("copy");
$temp.remove();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment