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 constructing its has string.
Please check the below code
Variable:
this.longDesc = "<iframe width="something" height="something" src="something" ></iframe>"
html file
<div class="description-panel" [innerHTML]="longDesc" ></div>