// toggle all to viewed document.querySelectorAll('.js-reviewed-checkbox').forEach((elem => { if (elem.checked) { return } var clickEvent = new MouseEvent('click'); elem.dispatchEvent(clickEvent); })) // toggle all to not-viewed document.querySelectorAll('.js-reviewed-checkbox').forEach((elem => { if (!elem.checked) { return } var clickEvent = new MouseEvent('click'); elem.dispatchEvent(clickEvent); }))
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