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 prepar
This might be a little over-simplistic for your use case, but is there any reason you can't use the native DOM functions, like so?
var domRepresentation = document.getElementsByClassName('classImLookingFor'); var angularElement = angular.element(domRepresentation);