toggle data attribute

PHOTO EMBED

Tue Jan 20 2026 03:36:44 GMT+0000 (Coordinated Universal Time)

Saved by @davidmchale #toggle #aria-label

  
    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');
content_copyCOPY