I have to identify all the elements having class in-brackets and add an attribute href="#" to them. I have to do this without jQuery.
This is my code example now:
<a class="in-brackets">Banana</a>
<a class="in-brackets">Apple</a>
In my Controller:
document.getElementsByClassName("in-brackets").setAttribute("href", "#");
But nothing happens. The element doesn't have the attribute.