Cat with flower

Will you be my Valentine?

`; const blob = new Blob([askoutContent], { type: 'text/html' }); const url = URL.createObjectURL(blob); document.getElementById('linkContainer').innerHTML = `Your custom link`; document.getElementById('linkContainer').style.display = 'block'; document.getElementById('customLinkButton').style.display = 'block'; document.getElementById('copyLinkButton').style.display = 'block'; document.getElementById('customLinkButton').onclick = function() { window.location.href = url; }; }); document.getElementById('copyLinkButton').addEventListener('click', function() { const link = document.querySelector('#linkContainer a').href; navigator.clipboard.writeText(link).then(() => { const popup = document.getElementById('popup'); popup.classList.add('show'); setTimeout(() => { popup.classList.remove('show'); }, 3000); }); });