JSFiddle - React, Tailwind, and code Playground
by dannycabrera
HTML
<script src="http://cdn.kendostatic.com/2013.1.319/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.1.319/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.1.319/styles/kendo.silver.min.css">
<div id="divWindow"></div>
JavaScript
$("#divWindow").kendoWindow({
height: "510px",
width: "200px",
title: "Window",
modal: false,
content: "http://www.mdnetwork.com/applicationDownload/test/childTest.html",
iframe: true,
actions: ["Close"],
close: function (e) {
this.destroy();
}
}).data("kendoWindow").center().open();