I found the need to make it easier to copy something into the clipboard so I wrote this little Javacscript function based off of what I found in a web search.
function copyFunc(idToCopy) {
/* Get the HTML Element based on ID passed to function */
var copyText = document.getElementById( idToCopy );
/* Select the inner HTML */
copyData = copyText.innerHTML;
/* Write the text to the clipbaod */
navigator.clipboard.writeText(copyData);
/* Alert the copied text, uncomment if you want the alert */
// alert("Copied the text: " + copyData);
}