jquery.xdCheckbox Plugin

Page project | Source

Custom Styling checkbox plugin for jQuery.

ru | eng

Start Demo without xdCheckbox

Add in html page

<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.xdcheckbox.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.xdcheckbox.css"/>

To style checkboxes enough of this design

$(function(){
	$('input[type=checkbox]').xdCheckbox();
})


Disabled
Not checked

JavaScript API for change checked and disabled

$(function(){
	$('input').xdCheckbox();
	$('input:first').xdCheckbox({disabled:true,checked:true});
})


Custom sizing

$(function(){
	$('input').xdCheckbox({width:32});
})