JSFiddle - React, Tailwind, and code Playground

HTML

<script type="text/javascript" src="http://cloud.github.com/downloads/SteveSanderson/knockout/knockout-2.1.0.js"></script>
<div id="dialog" data-bind="attr: {title: textboxinput}">
    <p>I'm the jQuery UI Dialog!</p>
    <input type="text" data-bind="value: textboxinput, valueUpdate: 'afterkeyup'"/>
    <span data-bind="text: textboxinput"></span>
</div>

CSS

#dialog{
background-color: #bada55;
}

JavaScript

$(document).ready(function(){
    ko.applyBindings({textboxinput: ko.observable("init")});
    $("#dialog").dialog();
});