I want to use the same progressbar multiple times that is crated by jquery in a div.
So how can i reinitiate the progressbar.
I want to use the same progressbar multiple times that is crated by jquery
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.