tags:

views:

45

answers:

2

I want to use the same progressbar multiple times that is crated by jquery in a div. So how can i reinitiate the progressbar.

+1  A: 

What's stopping you from just doing $('#yourelement').progressbar('value', 0); to reset the progress bar back to 0%?

Unless you're not using jQuery UI, in which cause you'd just have to do $('#yourelement').width('0%') or something similar.

CalebD
A: 
$('#yourprogressbarid').progressbar('option', 'value', 0);

Assuming you are using jQuery UI progressbar.

rahul