Hello, I am curious how can a javascript (or also benefiting from jquery) based progress indicator such can be developed:
My first idea is something such as:
function drawBar(total,sofar){
.........................
}
where it consumes the max number(20 in our case) and sofar (15 for the picture).
But how can it be implemented?
Is there any jquery based plugin to achieve this?
Regards