12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
|
|
const heartIcons = document.querySelectorAll('.heart-icon');
|
|
|
|
heartIcons.forEach(function(icon) {
|
|
icon.addEventListener('click', function() {
|
|
const currentIcon = this;
|
|
|
|
currentIcon.classList.toggle('ti-heart'); // Toggle outline
|
|
currentIcon.classList.toggle('ti-heart-filled'); // Toggle filled
|
|
});
|
|
});
|