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 

https://jsfiddle.net/4v3zf2b3/


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -