web/_javascript/utils/copy-link.js

19 lines
319 B
JavaScript
Raw Normal View History

/*
2020-08-19 07:26:45 +03:00
* Copy current page url to clipboard.
*/
2020-02-17 22:04:52 +03:00
function copyLink(url) {
2020-08-19 07:26:45 +03:00
if (!url || 0 === url.length) {
2020-09-17 14:20:50 +03:00
url = window.location.href;
2020-08-19 07:26:45 +03:00
}
2021-01-23 10:07:18 +03:00
const $temp = $("<input>");
$("body").append($temp);
$temp.val(url).select();
document.execCommand("copy");
$temp.remove();
alert("Link copied successfully!");
2020-08-19 07:26:45 +03:00
2020-09-17 14:20:50 +03:00
}