There is a string type variable, which contains an iframe tag. I need angular to identify the string as an iframe HTML tag and populate the HTML.
Currently, angular is co
Step1 : Import the below part in ts file
import {DomSanitizer} from '@angular/platform-browser';
Step 2 :Define constructor in perticular ts file
constructor(private domSanitizer:DomSanitizer) {}
Step 3:-Use below code in ts file according to requirement (method/ function or constructor)
this._EmittersService.longDescemitted$.subscribe(obj => {
this.longDesc = this.domSanitizer.bypassSecurityTrustHtml(obj or any html content);
or
this.longDesc = this.domSanitizer.bypassSecurityTrustHtml('<iframe width="something" height="something" src="something" ></iframe>')
});