JSFiddle - React, Tailwind, and code Playground

by malonso

HTML

<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>

<input type="checkbox" class="setting" />Check me
<div id="debug"></div>

JavaScript

$('input.mapVarToggle').change(function(e){
    $('#debug').append('Click triggered');
});