JSFiddle - React, Tailwind, and code Playground

by bschafer

HTML

<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.default.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.common.min.css">
<script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
<script src="http://cloud.github.com/downloads/SteveSanderson/knockout/knockout-2.1.0.js"></script>
<script src="http://rniemeyer.github.com/knockout-kendo/js/knockout-kendo.min.js"></script>
<div id="editor" data-bind="kendoEditor: content">content</div>
<hr>
<div data-bind="text: ko.toJSON($root)">text</div>

JavaScript

var ViewModel = function () {
    var self = this;
    self.content = ko.observable("<p>adding html content here!</p>");
}
    
    ko.applyBindings(new ViewModel);