Kendo Base

by redaemn

HTML

<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1119/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1119/styles/kendo.default.min.css">
<script src="http://cdn.kendostatic.com/2013.3.1119/js/jquery.min.js"></script>
<script src="http://cdn.kendostatic.com/2013.3.1119/js/kendo.web.min.js"></script>
<input id="autocomplete"></input>

JavaScript

jQuery(function($) {
   
    $('#autocomplete').kendoAutoComplete({
       dataSource: [
           "Italy", "Germany", "Ireland"
       ],
       filter: "startswith" 
    });
    
});