super customized checkboxes and radio buttons with jQuery

iCheck

@Damir Foy

Plugin features

Demo

Add checked state to 1 and 3 inputs show code
$('#input-1, #input-3').iCheck('check');
Remove checked state from 1 and 3 inputs show code
$('#input-1, #input-3').iCheck('uncheck');
Add disabled state to 2 and 4 inputs show code
$('#input-2, #input-4').iCheck('disable');
Remove disabled state from 2 and 4 inputs show code
$('#input-2, #input-4').iCheck('enable');
Remove all traces of iCheck show code
$('input').iCheck('destroy');

Callbacks

  • #input-4 is created
  • #input-3 is created
  • #input-2 is created
  • #input-1 is created

Skins

Minimal skin

Live

Color schemes

States

  • Normal
  • Hover
  • Checked
  • Disabled
  • Disabled & checked
Demo
  • Choose a color scheme, there are 10 different styles available:
    • Black — minimal.css
    • Red — red.css
    • Green — green.css
    • Blue — blue.css
    • Aero — aero.css
    • Grey — grey.css
    • Orange — orange.css
    • Yellow — yellow.css
    • Pink — pink.css
    • Purple — purple.css
  • Copy /skins/minimal/ folder and /js/jquery.icheck.js file to your site.
  • Insert before </head> in your HTML (replace your-path and color-scheme):

    <link href="your-path/minimal/color-scheme.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    

    Example for a Red skin:

    <link href="your-path/minimal/red.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    
  • Add some checkboxes and radio buttons to your HTML:

    <input type="checkbox">
    <input type="checkbox" checked>
    <input type="radio">
    <input type="radio" checked>
    
  • Add JavaScript to your HTML to launch iCheck plugin:

    <script>
    $(document).ready(function(){
      $('input').iCheck({
        checkboxClass: 'icheckbox_minimal',
        radioClass: 'iradio_minimal',
        increaseArea: '20%' // optional
      });
    });
    </script>
    

    For different from black color schemes use this code (example for Red):

    <script>
    $(document).ready(function(){
      $('input').iCheck({
        checkboxClass: 'icheckbox_minimal-red',
        radioClass: 'iradio_minimal-red',
        increaseArea: '20%' // optional
      });
    });
    </script>
    
  • Done.
Usage

Square skin

Live

Color schemes

States

  • Normal
  • Hover
  • Checked
  • Disabled
  • Disabled & checked
Demo
  • Choose a color scheme, there are 10 different styles available:
    • Black — square.css
    • Red — red.css
    • Green — green.css
    • Blue — blue.css
    • Aero — aero.css
    • Grey — grey.css
    • Orange — orange.css
    • Yellow — yellow.css
    • Pink — pink.css
    • Purple — purple.css
  • Copy /skins/square/ folder and /js/jquery.icheck.js file to your site.
  • Insert before </head> in your HTML (replace your-path and color-scheme):

    <link href="your-path/square/color-scheme.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    

    Example for a Red skin:

    <link href="your-path/square/red.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    
  • Add some checkboxes and radio buttons to your HTML:

    <input type="checkbox">
    <input type="checkbox" checked>
    <input type="radio">
    <input type="radio" checked>
    
  • Add JavaScript to your HTML to launch iCheck plugin:

    <script>
    $(document).ready(function(){
      $('input').iCheck({
        checkboxClass: 'icheckbox_square',
        radioClass: 'iradio_square',
        increaseArea: '20%' // optional
      });
    });
    </script>
    

    For different from black color schemes use this code (example for Red):

    <script>
    $(document).ready(function(){
      $('input').iCheck({
        checkboxClass: 'icheckbox_square-red',
        radioClass: 'iradio_square-red',
        increaseArea: '20%' // optional
      });
    });
    </script>
    
  • Done.
Usage

Flat skin

Live

Color schemes

States

  • Normal
  • Checked
  • Disabled
  • Disabled & checked
Demo
  • Choose a color scheme, there are 10 different styles available:
    • Black — square.css
    • Red — red.css
    • Green — green.css
    • Blue — blue.css
    • Aero — aero.css
    • Grey — grey.css
    • Orange — orange.css
    • Yellow — yellow.css
    • Pink — pink.css
    • Purple — purple.css
  • Copy /skins/flat/ folder and /js/jquery.icheck.js file to your site.
  • Insert before </head> in your HTML (replace your-path and color-scheme):

    <link href="your-path/flat/color-scheme.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    

    Example for a Red skin:

    <link href="your-path/flat/red.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    
  • Add some checkboxes and radio buttons to your HTML:

    <input type="checkbox">
    <input type="checkbox" checked>
    <input type="radio">
    <input type="radio" checked>
    
  • Add JavaScript to your HTML to launch iCheck plugin:

    <script>
    $(document).ready(function(){
      $('input').iCheck({
        checkboxClass: 'icheckbox_flat',
        radioClass: 'iradio_flat'
      });
    });
    </script>
    

    For different from black color schemes use this code (example for Red):

    <script>
    $(document).ready(function(){
      $('input').iCheck({
        checkboxClass: 'icheckbox_flat-red',
        radioClass: 'iradio_flat-red'
      });
    });
    </script>
    
  • Done.
Usage

Line skin

Live

  • Checkbox 1
  • Checkbox 2
  • Disabled
  • Disabled & checked
  • Radio button 1
  • Radio button 2
  • Disabled
  • Disabled & checked
Color schemes

States

  • Normal
  • Hover
  • Checked
  • Disabled
  • Disabled & checked
Demo
  • Choose a color scheme, there are 10 different styles available:
    • Black — line.css
    • Red — red.css
    • Green — green.css
    • Blue — blue.css
    • Aero — aero.css
    • Grey — grey.css
    • Orange — orange.css
    • Yellow — yellow.css
    • Pink — pink.css
    • Purple — purple.css
  • Copy /skins/line/ folder and /js/jquery.icheck.js file to your site.
  • Insert before </head> in your HTML (replace your-path and color-scheme):

    <link href="your-path/line/color-scheme.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    

    Example for a Red skin:

    <link href="your-path/line/red.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    
  • Add some checkboxes, radio buttons and labels to your HTML:

    <input type="checkbox">
    <label>Checkbox 1</label>
    
    <input type="checkbox" checked>
    <label>Checkbox 2</label>
    
    <input type="radio">
    <label>Radio button 1</label>
    
    <input type="radio" checked>
    <label>Radio button 2</label>
    
  • Add JavaScript to your HTML to launch iCheck plugin:

    <script>
    $(document).ready(function(){
      $('input').each(function(){
        var self = $(this),
          label = self.next(),
          label_text = label.text();
    
        label.remove();
        self.iCheck({
          checkboxClass: 'icheck_line',
          radioClass: 'icheck_line',
          insert: '<div class="icheck_line-icon"></div>' + label_text
        });
      });
    });
    </script>
    

    For different from black color schemes use this code (example for Red):

    <script>
    $(document).ready(function(){
      $('input').each(function(){
        var self = $(this),
          label = self.next(),
          label_text = label.text();
    
        label.remove();
        self.iCheck({
          checkboxClass: 'icheck_line-red',
          radioClass: 'icheck_line-red',
          insert: '<div class="icheck_line-icon"></div>' + label_text
        });
      });
    });
    </script>
    
  • Done.
Usage

Polaris skin

Live

States

  • Normal
  • Hover
  • Checked
  • Disabled
  • Disabled & checked
Demo
  • Copy /skins/polaris/ folder and /js/jquery.icheck.js file to your site.
  • Insert before </head> in your HTML (replace your-path and color-scheme):

    <link href="your-path/polaris/polaris.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    
  • Add some checkboxes and radio buttons to your HTML:

    <input type="checkbox">
    <input type="checkbox" checked>
    <input type="radio">
    <input type="radio" checked>
    
  • Add JavaScript to your HTML to launch iCheck plugin:

    <script>
    $(document).ready(function(){
      $('input').iCheck({
        checkboxClass: 'icheckbox_polaris',
        radioClass: 'iradio_polaris',
        increaseArea: '-10' // optional
      });
    });
    </script>
    
  • Done.
Usage

Futurico skin

Live

States

  • Normal
  • Checked
  • Disabled
  • Disabled & checked
Demo
  • Copy /skins/futurico/ folder and /js/jquery.icheck.js file to your site.
  • Insert before </head> in your HTML (replace your-path and color-scheme):

    <link href="your-path/futurico/futurico.css" rel="stylesheet">
    <script src="your-path/jquery.icheck.js"></script>
    
  • Add some checkboxes and radio buttons to your HTML:

    <input type="checkbox">
    <input type="checkbox" checked>
    <input type="radio">
    <input type="radio" checked>
    
  • Add JavaScript to your HTML to launch iCheck plugin:

    <script>
    $(document).ready(function(){
      $('input').iCheck({
        checkboxClass: 'icheckbox_futurico',
        radioClass: 'iradio_futurico',
        increaseArea: '20%' // optional
      });
    });
    </script>
    
  • Done.
Usage

All skins (except Line) are transparent, you may use them on any background.

Everything is included into download package.

Simple usage

iCheck plugin works with checkboxes and radio buttons like a constructor.
It wraps each input with a div, which you may customize yourself or use one of the available skins.
You may also place inside that div some HTML code or text using insert option.

For this HTML:

<input type="checkbox" checked>
<input type="radio" name="some" checked>
<input type="radio" name="some">

With default options you'll get nearly this:

<div class="icheckbox">
  <input type="checkbox" checked>
</div>
<div class="iradio">
  <input type="radio" name="some" checked>
</div>
<div class="iradio">
  <input type="radio" name="some">
</div>

By default, iCheck doesn't provide any CSS styles for wrapper divs (if you don't use skins).

Options

These options are default:

{
  // 'checkbox' or 'radio' to style only checkboxes or radio buttons, both by default
  handle: '',

  // class added to customized checkboxes
  checkboxClass: 'icheckbox',

  // class added to customized radio buttons
  radioClass: 'iradio',

  // class on checked state
  checkedClass: 'checked',

  // class on disabled state
  disabledClass: 'disabled',

  // class on hover state
  hoverClass: 'hover',

  // class on focus state
  focusClass: 'focus',

  // class on active state
  activeClass: 'active',

  // add hoverClass to customized input on label hover and labelHoverClass to label on input hover
  labelHover: true,

  // class added to label if labelHover set to true
  labelHoverClass: 'hover',

  // increase clickable area by given % (negative to decrease)
  increaseArea: '',

  // true to set hand cursor over input
  cursor: false,

  // set true to inherit input's class name
  inheritClass: false,

  // if set to true, input's id prefixed with "icheck-" and attached
  inheritID: false,

  // add HTML code or text inside customized input
  insert: ''
}

You can choose any class names and slyle them as you want.

Initialize

iCheck supports any selectors, but handles only checkboxes and radio buttons:

// customize all inputs (will search for checkboxes and radio buttons)
$('input').iCheck();

// handle inputs only inside $('.block')
$('.block input').iCheck();

// handle only checkboxes inside $('.test')
$('.test input').iCheck({
  handle: 'checkbox'
});

// handle .vote class elements (will search inside the element, if it's not an input)
$('.vote').iCheck();

// you can also change options after inputs are customized
$('input.some').iCheck({
  // different options
});

jQuery v1.6 or newer and jquery.icheck.js (jquery.icheck.min.js is minified) should be included in your HTML.

Callbacks

Callback name When used
is.Clicked user clicked on customized input or label
is.Changed input's checked or disabled state is changed
is.Checked input's state is changed to checked
is.Unchecked checked state is removed
is.Disabled input's state is changed to disabled
is.Enabled disabled state is removed
is.Created input is just customized
is.Destroyed customization is just removed

Use bind to attach them:

$('input').bind('is.Clicked', function(){
  console.log('input is clicked');
});

is.Created callback should be binded before plugin init.

Methods

$('input').iCheck('check'); — change input's state to checked

$('input').iCheck('uncheck'); — remove checked state

$('input').iCheck('disable'); — change input's state to disabled

$('input').iCheck('enable'); — remove disabled state

$('input').iCheck('update'); — apply input changes, which were done outside the plugin

$('input').iCheck('destroy'); — remove all traces of iCheck

Plugin benefits

iCheck is created to avoid routine of reinventing the wheel when working with checkboxes and radio buttons. It provides an expected identical result for the huge number of browsers, devices and their versions. Callbacks and methods can be used to easily handle and make changes at customized inputs.

There are some CSS3 ways available to style checkboxes and radio buttons, like this one. You have to know about some disadvantages of similar methods:

  • — inputs are keyboard inaccessible, since display: none or visibility: hidden used to hide them
  • — poor browser support
  • — multiple bugs on mobile devices
  • — tricky, harder to maintain CSS code
  • — JavaScript is still needed to fix specific issues

While CSS3 method is quite limited solution, iCheck is made to be an everyday replacement covering most of the tasks.

Browser support

iCheck is verified to work in Internet Explorer 7+ (works in IE6 if you don't use CSS class chaining), Firefox 2+, Google Chrome, Safari 3+ and Opera 9+ browsers. Should also work in many others.

Mobile browsers (like Opera mini, Chrome mobile, Safari mobile and others) are also supported. Tested on iOS, Android, BlackBerry and Windows Phone devices.

iCheck jQuery plugin is released under MIT License. Feel free to use it in personal and commercial projects.