JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://dl.dropbox.com/u/3234184/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.2.804/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.2.804/styles/kendo.kendo.min.css">
<script src="http://getfirebug.com/firebug-lite-debug.js"></script>
<input id="search-box" class="searchbox" />

JavaScript

$("#search-box").kendoAutoComplete({
    minLength: 3,
    dataTextField: "Name", //JSON property name to use
    dataSource: new kendo.data.DataSource({
        type: "odata", //Specifies data protocol
        pageSize: 20, //Limits result set
        transport: {
            read: "http://odata.netflix.com/Catalog/Titles"
        }
    })
});