Kendo UI Mobile base
HTML
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.mobile.all.min.css">
<script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
<div id="test" data-role="view" data-model="viewModel">
<div data-bind="text:text"></div>
<input data-role="switch" data-bind="checked:checked"/>
<input type="checkbox" data-bind="checked:checked"/>
</div>
JavaScript
var viewModel = kendo.observable({
checked:true,
text:"binding works"
});
new kendo.mobile.Application();
$('input').change(function(){
alert('changed');
});