Semantic ui progress is not reactive

I made a simple poll using semantic ui progress and all goes well, the data-percent successful change, but semantic ui progress does not change, progress will change if the page is refreshed

What should I do to make it reactive?

You increment the progress state by using the functions - http://semantic-ui.com/modules/progress.html#with-javascript

$('#example2').progress({
  percent: 22
});

This would be done in an environment that is reactive to the data the progress-bar is tracking

1 Like