<input type="checkbox" value="1" id="checkbox" name="checkbox">
<label for="checkbox">Checkbox</label>
<input type="radio" value="1" id="radio" name="radio">
<label for="radio">Radio</label>
$("input[type='checkbox'], input[type='radio']").checkbox();
<input type="checkbox" value="1" id="checkbox" name="checkbox">
<label for="checkbox">Checkbox</label>
$("input[type='checkbox']").checkbox({
toggle: true
});
<input type="checkbox" value="1" id="checkbox" name="checkbox">
<label for="checkbox">Checkbox</label>
<input type="radio" value="1" id="radio" name="radio">
<label for="radio">Radio</label>
$("input[type='checkbox'], input[type='radio']").checkbox({
theme: ""
});