const el = document.createElement('textarea'); el.value = str; //str is your string to copy document.body.appendChild(el); el.select(); document.execCommand('copy'); // Copy command document.body.removeChild(el);