function copyToClipboard() { const omegabundlediscountcode = document.getElementById('omega-bundle-discount-code').innerText; navigator.clipboard.writeText(omegabundlediscountcode).then(() => { alert('Discount code copied to clipboard: ' + omegabundlediscountcode); }).catch(err => { console.error('Could not copy text: ', err); }); }