When an element with the class facetwp-color-label
is clicked, I am then trying to use jQuery trigger()
on the dom element class="facetwp-color"
directly above.
Current code:
$(document).on('click', '.facetwp-color-label', function() {
$(this).closest('.facetwp-color').trigger('click');
});
I tried with prev(), next(), closest(). None are triggering so far. Here is my manual attempt to confirm .trigger() works on the element I am targeting:
$(document).on('click', '.facetwp-color-label', function() {
$(this).closest('.facetwp-color').trigger('click');
console.log(this);
});
Result:
<div class="facetwp-color-label">Cream</div>