make a copy in js code example
Example 1: js copy to clipboard
navigator.clipboard.writeText("Hello, World!");
Example 2: js copy to clipboard
Also works on safari!
function copyToClipboard() {
var copyText = document.getElementById("share-link");
copyText.select();
copyText.setSelectionRange(0, 99999);
document.execCommand("copy");
}