javascript - Embed iframe element to DOM in Ionic -
i have iframe element in json object.
here json data.
{ "product_id":1 "video":"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/g1xpcfwyuts\" frameborder=\"0\" allowfullscreen></iframe>" } i need embed video(p.video) html using angular.
edit:
i tried
<div [innerhtml]="p.video"> but getting err
warning: sanitizing html stripped content
html
<div id="videowrapper"></div> js
document.getelementbyid('videowrapper').innerhtml = p.video
Comments
Post a Comment