JSFiddle - React, Tailwind, and code Playground

by gyoshev

HTML

<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.3.1129/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.3.1129/styles/kendo.default.min.css">
<script src="http://cdn.kendostatic.com/2011.3.1129/js/kendo.all.min.js"></script>
<div id="window"></div>

CSS

body {
    font: 12px/1.5 Tahoma,sans-serif;
}

JavaScript

$(document).ready(function() {
    var window = $("#window");
    
    window.kendoWindow({
        width: "500px",
        height: "200px",
        title: "Placebo"
    });
    
    window.data("kendoWindow").content("Something borrowed, something blue... <a href='#'>more</a>");
    
    window.find("a").click(function(e) {
        e.preventDefault();
        window.data("kendoWindow").content("... every me, and every you.");
    });
});