Copy data from webpage to clipboard
async copyText(text) { if (navigator.clipboard) { await navigator.clipboard.writeText("THIS TEXT IS COPIED"); alert("Copied"); } else alert("Copy not supported"); }