I need to access to some properties of the parent DOM element which contains the component from where i want to get the info, is there a way to do such thing?
Here i
In your child component pass parent in constructor:
constructor( private parent: ParentComponent, ... ) ngAfterViewInit() { console.log(this.parent); }