I have several actions to perform, and I use the bootstrap progress bar to show the progress of each action. After completing each action, the progress bar is set to zero using the following line of code $ ('progress'). attr ('style', 'width: 0% ")
But, it animates the opposite, for users it looks like the application cancels the action performed earlier.
How to reset a progress bar without a reverse animation effect?
javascript jquery css twitter-bootstrap
Pramodh
source share