function startGame(){ console.log('Game started!'); reset(); $loButton.trigger('click'); } function stopGame(){ console.log('Game will stop soon! Let me finish.'); stopped = true; } function reset(){ $('#double_your_btc_stake').val(startValue); } // quick and dirty hack if you have very little bitcoins like 0.0000001 function deexponentize(number){ return number * 1000000;