How to make it so that you can press several times one and the same button in a row?
I tried it with a delay of two seconds - nothing happened:
if ($('#double_your_btc_bet_lose').html() !== '' && multiplier == 3 ) { multiplier++; $('#double_your_btc_2x').click(); function firstStep() {} function secondStep() {} firstStep(); setTimeout('secondStep()', 2000); $('#double_your_btc_2x').click(); }