import { AfterViewInit, Directive, ElementRef } from '@angular/core'; declare const jQuery: any; @Directive({ selector: "[appunwraptag]", }) export class UnwrapTagDirective implements AfterViewInit { constructor(private element: ElementRef) { } ngAfterViewInit() { jQuery(this.element.nativeElement).removeAttr('appunwraptag').unwrap(); } }