Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

angular elementref parent

// Inject the element itself:
constructor(private elRef: ElementRef){}

// access the native elements parent:
ngOnInit() {
  console.log(this.elRef.nativeElement.parentElement);
}
 
PREVIOUS NEXT
Tagged: #angular #elementref #parent
ADD COMMENT
Topic
Name
7+7 =