I was having trouble with a piece of code and found out that the problem was that decrement (--) was not doing anything. Instead I am using -1, but what is it that it doesn't funciton?
_01 is simply a number
minOne = document.getElementById("ctdwnTimeDispSec").value=_01--;
This is what works now
minOne = document.getElementById("ctdwnTimeDispSec").value=_01-1;