Goodnight! I have such a block of code:
// Вывод процентов, вида 99.99%, на поле прогресс бара! var myPer = 0; $("#progressbar").progressbar({ value: myPer }).children('.ui-progressbar-value').html(myPer.toPrecision(3) + '%').css({ display: 'block', align: 'center', fontColor: 'red', });
This block of code displays 0.00% on ProgressBar. Task - I need to add 0.01% + 0.00% every 8640ms until the total amount equals 100.00%. Help, please, solve the problem, but by the night the brain no longer works, unfortunately ;-( Using the .animate () method, but not necessarily ...