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 data-role="view" data-init="disableSwitch">
<input type="checkbox" data-role="switch" id="mySwitch" />
</div>
JavaScript
new kendo.mobile.Application();
function disableSwitch() {
var switchWrapper = $("#mySwitch").data("kendoMobileSwitch").wrapper;
switchWrapper[0].addEventListener("mousedown", function(e) { e.stopPropagation() }, true);
}