JSFiddle - React, Tailwind, and code Playground
by Muhammad Hassaan
HTML
<link rel="stylesheet" href="http://www.bootstrap-switch.org/docs/css/bootstrap.min.css">
<link rel="stylesheet" href="http://www.bootstrap-switch.org/dist/css/bootstrap3/bootstrap-switch.css">
<script src="http://www.bootstrap-switch.org/docs/js/bootstrap.min.js"></script>
<script src="http://www.bootstrap-switch.org/dist/js/bootstrap-switch.js"></script>
<input type="checkbox" id="status" name="status" checked>
JavaScript
var s = $('#status').val();
$("#status").change(function(){
alert(s);
});