I have multiple actions to perform and I am using bootstrap progress bar to show the progress on each action. After the completion of each action the progress bar is set to zero using the below line of code $('.progress').attr('style', "width: 0%")
But, this animates reverse, for users it looks like application is undoing an action performed previously.
How do I reset the progress bar instantly without the reverse animation effect?