I'm trying to have a progression slider and have it display the current step it's on but it won't save the attr_ and it won't display the current value. I tried replacing the slider with a number input and I know that works. So I suspect the root cause is the fact that the "range" won't save. How do I fix this? < div id = "progSliders" > < div id = "progBox" style = " width: 80%;" > < h3 > Path </ h3 > < input type = "range" name = "attr_pathprog" min = "0" max = "5" value = "0" class = "pathprog" id = "pathprog" > < input type = "hidden" name = "attr_hidpathprog" value = "0" > Step: < input type = "number" name = "attr_pathCurrent" value = "@{hidpathprog}" disabled > / 5 </ div > < script type = "text/worker" > on("change: pathprog ", function() { getAttrs([" pathprog "], function(values) { setAttrs({ hidpathprog: Math.min((values.pathprog))}); }); }); </ script > </ div >