JSFiddle - React, Tailwind, and code Playground

by RichardAD

HTML

<script src="http://cdn.kendostatic.com/2012.1.322/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.default.min.css">
<button id='show'>
    Show window
</button>

<div id='window'></div>

JavaScript

var w = $('#window').kendoWindow({
    visible: false,
    width: '450px',
    height: '450px',
    content: {
        type: 'POST',
        url: 'http://www.google.com',
        data: {
            q: 'kendoWindow'
        }
    },
    modal: false,
    draggable: true,
    actions: ["Refresh", "Maximize", "Minimize", "Close"]
}).data('kendoWindow');

w.center();

$('button').click(function() {
    w.refresh({

        type: 'POST',
        url: 'http://devenezia.com',
        data: {
            qq: 'boohoo'
        }
    });

    w.open();
});


//         url: 'http://www.devenezia.com/env.frpl?q='+new Date().getTime(),