I am trying to change the value of my progress bar.
var progressBar = d3.select("#current").append("input")
.attr("class","loading")
.attr("data-width","135")
.attr("value","0");
When I do this :
progressBar.select("input").attr("value","5");
The value is not changed. What should I do ?