0
How to assign the progress bar to any active variable?
2 ответов
+ 3
You can use JavaScript.
For example, if you have a progress bar: <progress id='p'></progress>
The JavaScript can go:
var pBar = document.getElementById('p');
pBar.value = value; // some custom value
0
pls explain further @ James