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); }); }