In the developer properties window, changing "Value" instantly updates the bar's display.
But running the javascript line:
Code: Select all
document.getElementById('Progressbar1').Value = 75;
What does my javascript line need to say?
Code: Select all
document.getElementById('Progressbar1').Value = 75;
Code: Select all
$( "#Progressbar1" ).progressbar({ value: 37 });