Basic

<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();

Toggle

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

No Theme

<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: ""
});