Hi All
How would I embed a YouTube video ?
Thanks
Printable View
Hi All
How would I embed a YouTube video ?
Thanks
Embed it with an iframe.
to embed a video you use de embed code from youtube, you can do something like this, using the html property.
Code:Ext.create('Ext.Panel', {
html: '<iframe width="560" height="315" src="http://www.youtube.com/embed/AuzyODgWRp4" frameborder="0" allowfullscreen></iframe>'
});
Thanks
How would I code it so the video would stop playing when I go to another page?
Now the YouTube Video plays but it only stop When I stop it. Would like it to stop if I go off the page.
Thanks