17 lines
469 B
JavaScript
17 lines
469 B
JavaScript
/*
|
|
Template Name: Grenviro Monitoring
|
|
Author: Themesbrand
|
|
Website: https://Themesbrand.com/
|
|
Contact: Themesbrand@gmail.com
|
|
File: Project overview init js
|
|
*/
|
|
|
|
// favourite btn
|
|
var favouriteBtn = document.querySelectorAll(".favourite-btn");
|
|
if (favouriteBtn) {
|
|
Array.from(document.querySelectorAll(".favourite-btn")).forEach(function (item) {
|
|
item.addEventListener("click", function (event) {
|
|
this.classList.toggle("active");
|
|
});
|
|
});
|
|
} |