| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // Custom checkbox and radios
- function setupLabel() {
- // Checkbox
- var checkBox = ".checkbox";
- var checkBoxInput = checkBox + " input[type='checkbox']";
- var checkBoxChecked = "checked";
- var checkBoxDisabled = "disabled";
- // Radio
- var radio = ".radio";
- var radioInput = radio + " input[type='radio']";
- var radioOn = "checked";
- var radioDisabled = "disabled";
- // Checkboxes
- if ($(checkBoxInput).length) {
- $(checkBox).each(function(){
- $(this).removeClass(checkBoxChecked);
- });
- $(checkBoxInput + ":checked").each(function(){
- $(this).parent(checkBox).addClass(checkBoxChecked);
- });
- $(checkBoxInput + ":disabled").each(function(){
- $(this).parent(checkBox).addClass(checkBoxDisabled);
- });
- };
- // Radios
- if ($(radioInput).length) {
- $(radio).each(function(){
- $(this).removeClass(radioOn);
- });
- $(radioInput + ":checked").each(function(){
- $(this).parent(radio).addClass(radioOn);
- });
- $(radioInput + ":disabled").each(function(){
- $(this).parent(radio).addClass(radioDisabled);
- });
- };
- };
- $(document).ready(function(){
- $("html").addClass("has-js");
- // First let's prepend icons (needed for effects)
- $(".checkbox, .radio").prepend("<span class='icon'></span><span class='icon-to-fade'></span>");
- $(".checkbox, .radio").click(function(){
- setupLabel();
- });
- setupLabel();
- });
|