i\'m trying to disable a button for 6 seconds while in a loop but so far I can\'t quite figure it out.
var disabledStartTimer = setInterval(disabledTimer, 1000);
var start = 0; if (start > 6){
Clearly this will always go into the else. You set the variable to 0 and then test if it's greater than 6... it isn't. You likely wanted this to be a global, move it outside of the function.