const listItem = target.closest('li.facet-group__list-item');
if (!listItem) return;
// Toggle the data-checked attribute
const wasChecked = listItem.getAttribute('data-checked') === 'true';
listItem.setAttribute('data-checked', wasChecked ? 'false' : 'true');
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter