JSFiddle - React, Tailwind, and code Playground

by epidemian

HTML

<script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.mobile.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.mobile.all.min.css">
<div data-role="view">
    <ul data-role="listview" data-style="inset">
        <li><label><input type="checkbox" />Check me!</label></li>
        <li><span id="message" /></li>
    </ul>
</div>

JavaScript

var app = new kendo.mobile.Application(document.body);

$(':checkbox').change(function() {
    setTimeout(function() {
        $('#message').text('The checkbox is ' + ($(':checkbox').is(':checked') ? '' : 'NOT ') + 'checked');
    });
}).change();