/* * Copy current page url to clipboard. * v2.1 * https://github.com/cotes2020/jekyll-theme-chirpy * © 2020 Cotes Chung * MIT License */ function copyLink() { var url = window.location.href; var $temp = $(""); $("body").append($temp); $temp.val(url).select(); document.execCommand("copy"); $temp.remove(); alert("Link copied successfully!"); }