'; const blob = new Blob([html], {type: 'text/html'}); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = 'lyrono-coupon.html'; document.body.appendChild(a); a.click(); a.remove(); URL.revokeObjectURL(url); } async function lyronoShareCoupon(code) { if (navigator.share) { try { await navigator.share({ title: 'Lyrono Club Coupon', text: 'My Lyrono Club coupon: ' + code, url: window.location.href }); } catch (e) {} } else { navigator.clipboard.writeText(code); alert('Coupon code copied: ' + code); } }
Skip to main content Scroll Top