JavaScript ToggleButton
Invoke the unCheck method of the jqxButton. 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">
<input type="button" value="Click me" id='jqxButton' />
JavaScript
$('#jqxButton').jqxToggleButton({
theme: 'energyblue',
toggled: true
});
// UnCheck the Button
$('#jqxButton').jqxToggleButton('unCheck');