Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sabesansathananthan/59385d6f47e11ef7992d6a07f3e8705e to your computer and use it in GitHub Desktop.
Save sabesansathananthan/59385d6f47e11ef7992d6a07f3e8705e to your computer and use it in GitHub Desktop.
Clipboard Operation in JavaScript
async function copyPageUrl() {
try {
await navigator.clipboard.writeText(location.href);
console.log('Page URL copied to clipboard');
} catch (err) {
console.error('Failed to copy: ', err);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment