I created a tool that checks a password strength. the result is given as a number between 0 to 100. to make things nicer, I created a setTimeout function to make the numbers increase or decrease gradually like a counter.
here is a link to the full code in jsfiddle
you will notice that the function works properly when the value increases but not when the value decreases. I believe the problem is in this piece of code:
function run() {
var i = lastGrade;
setTimeout( function updateProgress() {
x.style.width = i*1.5 + 'px';
s.innerHTML = i + '%';
if(lastGrade <= grade) {
if (i < grade){
setTimeout(updateProgress, 10);
}
i++;
}
else if(lastGrade > grade) {
if (i > grade){
setTimeout(updateProgress, 10);
}
i--;
}
}, 10);
}
123456789. passwordmeter.com – Mehdi Golchin Dec 26 '11 at 6:06