JSFiddle - React, Tailwind, and code Playground
by sfoster
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>new dijit Dialog</title>
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/resources/dojo.css";
</style>
<!-- required: a default dijit theme: -->
<link id="themeStyles" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/tundra/tundra.css">
<!-- required: dojo.js -->
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js"
djConfig="parseOnLoad: true, isDebug: true"></script>
<script type="text/javascript">
dojo.require("dijit.Dialog");
dojo.ready(function(){
var dlg = new dijit.Dialog({ title: "The Title", content: "The Content" });
dlg.startup();
dlg.show();
})
</script>
</head>
<body class="tundra">
</body>
</html>