I am trying to create a simple counter that counts back from 3 to 0 or from 5 to 0 or whatever.
This is a timer for questions, so each number should be visible to the user.
I tried:
for (i=3;i>=0;i--){ $(".timerInner").delay(500).text( i ); }
But no luck.
source share