Can anyone help with how to find 'All' Elements with a particular class name in Angular 2? I thought it would be trivial but it's giving me more problems that was prepared for.
<span class="classImLookingFor">foo</span>
<span class="classImLookingFor">Voo</span>
<span class="classImLookingFor">Moo</span>
I thought by doing what I have below would return all the elements with class "classImLookingFor" but it only returns the first instance.
constructor(private renderer: Renderer){}
ngAfterViewInit(){
 const el = this.renderer.selectRootElement('.classImLookingFor');
 this.renderer.setElementAttribute(el, 'tabindex', 0);
}
Afterwards, my markup looks like this.
<span class="classImLookingFor" tabindex="0">foo</span>
<span class="classImLookingFor">Voo</span>
<span class="classImLookingFor">Moo</span>
It seems like I should be able to create a Renderer array, but that doesn't seem to work either. I need to manipulate each element with that class name.
 
     
     
     
     
     
     
    
 
    