ID: I202601100020
Status: idea
Tags: jackbox, JavaScript
bracketeering jackbox tie spam
function simulateClickUntilGone() {
const checkAndClick = () => {
const button = document.querySelector(
'button[data-action="choose"][data-index="0"]'
);
if (button) {
button.click();
console.log("Button clicked");
// Small delay before checking again
setTimeout(checkAndClick, 100);
} else {
console.log("Button is gone!");
}
};
checkAndClick();
}
simulateClickUntilGone();References
I was playing bracketeering, but the button spam is not fair against autoclickers. so i made this