Dojo YouTube Video in a Dialog
by Alex Azuero
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.8.1/dojo/resources/dojo.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/dojo/1.8.1/dijit/themes/claro/claro.css">
<div id="theid"></div>
JavaScript
require(["dijit/Dialog", "dojo/on", "dojo/dom", "dojo/parser", "dojo/domReady!"], function (Dialog, on, dom, parser, ready) {
dom.byId("theid").innerHTML = "Gavin";
var dialog = new Dialog({
content:'<iframe width="640" height="360" src="https://www.youtube.com/embed/IwzSKyctfO4?rel=0&autoplay=1" frameborder="0" allowfullscreen></iframe>',
title:'The Title'
});
on(dialog, "cancel", function() {
dialog.destroy();
});
dialog.show();
});