My progress-bar is now operating on % scale. I want to change it from % to range scale.
min: 0 max: 10
This works in %:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
<div class="progress">
<div id="test" class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" style="width: 100%"></div>
</div>
But I want to change this from % to value range.
##update
Things with aria-value does not work. I don't know why.
I found a solution, I calculate the percentage from my response:
var calculations = data[1] / 10 * 100