CheckBox Modifier Plugin

This plugin is used to enhence the actual checkbox in pages. Depending on OS and Theme, people actually have different check box look and feel. The one in Windows XP is actually looking good, but compared to Vista, Vista is even more beautiful. I wanted to create a more standard check box that you can use everywhere (code behind, etc.).

You can actually use that plugin with my other plugin to create a cool effect. You will see it later in my demo.

In my first demo, you will be able to see the both check box in action,the real one, and the one that is generated by my plugin. Normally, you won’t have to show the real check box option. This option is called “showRealCheckBox” and it is used only for debugging or demonstration.

$("#cbWithTrack :checkbox")
  .CheckboxMod(
      {
        showRealCheckBox: true
      }
  );
Convert checkbox to new checkbox type.

In my second demo, I will transfer the check box as you would do it normally on a page.

$("#cbWithTrack :checkbox")
  .CheckboxMod();
Description: We change call the CheckboxMod function and it convert all the checkbox inside the current div to stylish checkbox using default options.

Convert check box to new checkbox type.

Download plugin