Created
November 22, 2016 11:30
-
-
Save AndrewCraswell/de0a8de5416005de9d02de34337821b8 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 (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