How to change the color of
progress[value]::-webkit-progress-value {
background-color: #00bdf8;
}
at different values selected by the user when user select 30% then color should be red, at 60% it will be Yellow and then green
<input type="range" max="100" step="1" class="inputseekbar" id="range">
<progress max="100" id="progressbarcolor"></progress>
<output for="range" class="output"></output>
what will be the JS or Jqueryenter image description here
<output>
tag is used for showing the "%".