12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
const url = window.location.href;
|
|
navigator.clipboard.writeText(url).then(
|
|
function () {
|
|
console.log(`Copied URL: ${url}`);
|
|
},
|
|
function (err) {
|
|
console.error(`Something went wrong..`, err);
|
|
},
|
|
);
|
|
|
|
console.log(`Wrote URL: ${url}`);
|