JavaScript CheckBox
Bind to the unchecked event by type: jqxCheckBox. Author: http://jqwidgets.com
by jqwidgets
HTML
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<div id='jqxCheckBox'>Entertainment</div>
JavaScript
$("#jqxCheckBox").jqxCheckBox({
width: '300px',
height: 25,
theme: 'energyblue',
checked:true
});
$('#jqxCheckBox').on('unchecked', function (event) {
alert("You unchecked the box")
});