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
2010-01-19 14:44:37
A:
$('#yourprogressbarid').progressbar('option', 'value', 0);
Assuming you are using jQuery UI progressbar.
rahul
2010-01-19 14:45:39