Snippets Collections
  
    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');
star

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

#toggle #aria-label

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension