Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

nativeelement angular add class

constructor(public elementRef: ElementRef, private renderer: Renderer)
{
        this.renderer.setElementClass(this.elementRef, 'class');
   // or 

            this.elementRef.nativeElement.classList.add('class');

}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #nativeelement #angular #add #class
ADD COMMENT
Topic
Name
3+6 =