krata/assets/js/_commons/copy-link.js

23 lines
417 B
JavaScript
Raw Normal View History

/*
2020-08-19 06:26:45 +02:00
* Copy current page url to clipboard.
* v2.1
* https://github.com/cotes2020/jekyll-theme-chirpy
* © 2020 Cotes Chung
* MIT License
*/
2020-02-17 20:04:52 +01:00
function copyLink(url) {
2020-08-19 06:26:45 +02:00
if (!url || 0 === url.length) {
2020-09-17 13:20:50 +02:00
url = window.location.href;
2020-08-19 06:26:45 +02:00
}
2020-09-17 13:20:50 +02:00
var $temp = $("<input>");
$("body").append($temp);
$temp.val(url).select();
document.execCommand("copy");
$temp.remove();
alert("Link copied successfully!");
2020-08-19 06:26:45 +02:00
2020-09-17 13:20:50 +02:00
}