jQuery RadioButton
Invoke the val method of the jqxRadioButton. 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='jqxRadioButton'>Radio Button</div>
<div>
<input style="margin-top: 20px;" type="button" id='jqxButton' value="Set new value of the button" />
</div>
JavaScript
$("#jqxRadioButton").jqxRadioButton({
width: 120,
height: 25,
theme: 'energyblue'
});
$("#jqxButton").jqxButton({
height: '30px',
width: '200px',
theme: 'energyblue'
});
$('#jqxButton').on('click', function () {
$('#jqxRadioButton').jqxRadioButton('val', true);
});