Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save steverobbins/9c7be2f545104f98e87f to your computer and use it in GitHub Desktop.
Save steverobbins/9c7be2f545104f98e87f to your computer and use it in GitHub Desktop.
jQuery('.nestedlisting .give-gold').each(function (i, that) {
setTimeout(function() {
jQuery(that).click();
}, i * 1000);
});
jQuery('button.btn.gold-button[type=button]:visible').each(function (i, that) {
setTimeout(function() {
jQuery(that).click();
}, i * 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment