Forked from eviltester/gist:11093f0e4c501a41990e227393184eda
Last active
November 8, 2021 18:49
-
-
Save eggplants/ac2cae29fa44359bf3f64db2fdf2dadf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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