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 can use this with jquery:
$(".publish_0").attr("class", "publish_1")
Alternatively, use getElementsByClassName and loop through the DOM elements returned.