I am trying to add a class to multiple divs to change it's background color.
HTML:
<div class="span6">
<div class="heading">Heading 1</div>
</div>
I am currently using this:
angular.element(document.querySelector('.heading')).addClass('color-change');
My issue is that... there are multiple div's with this heading but it is changing the color of only the first occurrence of that div. How can I have it so all the divs with that class add that css styling.