Skip to content

Instantly share code, notes, and snippets.

@AndrewCraswell
Created November 22, 2016 11:30
Show Gist options
  • Save AndrewCraswell/de0a8de5416005de9d02de34337821b8 to your computer and use it in GitHub Desktop.
Save AndrewCraswell/de0a8de5416005de9d02de34337821b8 to your computer and use it in GitHub Desktop.
(function (tip) {
var i = tip;
var delayInMilliseconds = 1000;
for (i = i; 0 < i; i--) {
setTimeout(function () {
$('#id_tip_amount').val(1);
$('#id_tip_message').click();
}, i*delayInMilliseconds);
}
}(10));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment