/* 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"); }); }); }