Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eggplants/ac2cae29fa44359bf3f64db2fdf2dadf to your computer and use it in GitHub Desktop.
Save eggplants/ac2cae29fa44359bf3f64db2fdf2dadf to your computer and use it in GitHub Desktop.
(function () {
var timer = 100;
document
.querySelectorAll("div > input[type='checkbox']:checked")
.forEach((interest) => {
setTimeout(function () {
interest.click();
}, timer);
timer += 2000;
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment