I have a jquery ui loading bar:
$(document).ready(function() {
$("#progressbar").progressbar({ value: 37 });
});
I wish to apply some sort of “real-time-loading” value to the bar.
I want to do it like:
– Count down from X seconds – while it countdowns, the loading bar percentage is increasing.
Thanks in advance!
Good luck!