The progress bar I'm working with looks like this:
<progress class="progress is-small" value="20" max="100">20%</progress>
My goal is to use javascript to remove value="20"
, resulting in:
<progress class="progress is-small" max="100">20%</progress>
I want to achieve an indeterminate progress bar by clicking on another element, following the example provided at .
I attempted to achieve this using
document.getElementsByTagName("progress").val("");
but it did not work as expected.