I have many div with the class publish_0 that I would like to change to publish_1 on click of a button.
publish_0
publish_1
Right now I use this but it only ch
You need to use a loop to iterate over all the elements and set their class attribute value individually:
var els = document.querySelectorAll('.publish_0'); for (var i=0; i < els.length; i++) { els[i].setAttribute("class", "publish_1"); }