click to copy code example
Example 1: javascript copy to clipboard
var copyTextarea = document.getElementById("someTextAreaToCopy");
copyTextarea.select(); //select the text area
document.execCommand("copy"); //copy to clipboard
Example 2: jquery copy to clipboard
document.execCommand("copy");