I try change width of bootstrap progress bar with java script but don't worked.I wrote this code in head section. Please advice.
document.getElementsByClassName("progress-bar").setAttribute("style", "width:50%");
document.getElementsByClassName("progress-bar").style.width = "width:50%";
Html :
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
document.getElementsByClassName("progress-bar")[0].style.width = "50%";OR[].forEach.call(document.getElementsByClassName("progress-bar"),function(elem){ elem.style.width="50%" });progress-bar?