document.addEventListener('DOMContentLoaded', function () {
// Target the specific collection link using its URL
const hairCareLink = document.querySelector('a[href="https://niram.in/blogs/hair-care"]');
if (hairCareLink) {
hairCareLink.addEventListener('click', function () {
// Replace the 'false' condition with 'true' once the click event occurs
if (true) {
_hsq.push([
'trackCustomBehavioralEvent',
{
name: "pe21712655_add_to_cart",
properties: {
collection_name: "Hair Care", // Name of the collection
collection_url: "https://niram.in/blogs/hair-care", // URL of the collection
},
},
]);
console.log("Custom event tracked for Hair Care collection click.");
}
});
}
});