I wish to launch multiples functions at the same time when clicking in a button.
The thing is sensitive since that's launch timers, and if they aren't synchronised the little difference is immediatly visible ...
Actually I use this code :
<button class="btn btn-success startTimer" id="gobutton">Start</button>
<script type="text/javascript">
$(".startTimer").click(function() {
var timeseconds = $("#MoneyTimer").TimeCircles().getTime();
$("#timeseconds").val(timeseconds);
$("#MoneyTimer").TimeCircles().start();
$('#totaleuro.compteur1').timer1('start');
$('#totaleuro.compteur2').timer2('start');
});
</script>