Skip to content

Instantly share code, notes, and snippets.

@gm3dmo
Last active October 10, 2023 08:34
Show Gist options
  • Save gm3dmo/e085294a622c1c72eec0e8b48d72b092 to your computer and use it in GitHub Desktop.
Save gm3dmo/e085294a622c1c72eec0e8b48d72b092 to your computer and use it in GitHub Desktop.
Select all tick boxes in browser

Select all tickboxes in a browser screen

Chrome Developer Tools/Mozilla Developer tools.

Go to the console and paste:

$$('input[type="checkbox"').map(i => i.checked = true)

This will select all the tickboxes on the page.

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment