4,554
edits
No edit summary |
No edit summary |
||
Line 32: | Line 32: | ||
} | } | ||
// | // Using delegated event handling | ||
$('.filtered-value-option-label | $(document).on('click', '.filtered-value-option-label', function() { | ||
console.log("Filter clicked"); | console.log("Filter clicked"); | ||
communityListFeatured.hide(); | communityListFeatured.hide(); | ||
console.log("Community List Featured should now be hidden"); | console.log("Community List Featured should now be hidden"); | ||
}); | }); | ||
// Optional: | // Optional: Clear filters event | ||
$(document).on('click', '.clear-filters', function() { | |||
$( | |||
console.log("Clear filters clicked"); | console.log("Clear filters clicked"); | ||
communityListFeatured.show(); | communityListFeatured.show(); | ||
console.log("Community List Featured should now be visible"); | console.log("Community List Featured should now be visible"); |