Html SwitchButton
Invoke the enable method of the jqxSwitchButton. Author: http://jqwidgets.com
by jqwidgets
HTML
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<div id="jqxSwitchButton"></div>
<div>
<input style="margin-top: 20px;" type="button" id='jqxButton' value="Enable the button" />
</div>
JavaScript
$('#jqxSwitchButton').jqxSwitchButton({
height: 35,
width: 80,
theme: 'energyblue',
disabled: true
});
$("#jqxButton").jqxButton({
height: '30px',
width: '140px',
theme: 'energyblue'
});
$('#jqxButton').on('click', function () {
$('#jqxSwitchButton').jqxSwitchButton('enable');
});