//
function copyFavorites() {
// Get the text field
var copyText = document.getElementById("favorites-link");
copyText.classList.toggle('is-success')
// Select the text field
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices
// Copy the text inside the text field
navigator.clipboard.writeText(copyText.value);
}