Hello,
I'm trying to display multiple, "static" jQuery Progress Bars on a single page, all with different different values.... Anyhow, say I have this bit of code:
$(function() {
$(".progressbar").progressbar({value: 37});
})
Is there a way to use the same class for multiple "instances" of the progress bar? And is it possible to pass different values?
Any help would be appreciated...
Thanks!