timerStart

timerStart

Event fires when a timer starts counting.

timerStart:[name]

Event fires when the timer of name starts counting.

ad.on("timerStart", function() {
  //run when a timer begins
});

ad.on("timerStart:myTimer", function() {
  //run when the timer 'myTimer' begins
});