Files
JellySport/ProjectSourceCode/src/resources/js/club-page/favorite-button.js

9 lines
308 B
JavaScript
Raw Normal View History

document.addEventListener("DOMContentLoaded", function() {
var favoriteButton = document.getElementById("club-favorite-button");
if (favoriteButton) {
favoriteButton.addEventListener("click", function() {
favoriteButton.src = "/img/club-page/favorited.png";
});
}
});