Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 12th, 2012  |  syntax: None  |  size: 0.52 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. if ($('input.check_boxes')) {
  2.     $('input.check_boxes').each( function () {
  3.       var chbox = $(this)
  4.       var label = $(this).closest('label');
  5.       if (chbox.is(':checked')) {
  6.         label.css('background-position', '0px -16px');
  7.       };
  8.       label.click( function() {
  9.         if ($(this).children('#' + $(this).attr('for')).is(':checked')) {
  10.           $(this).css('background-position', '0px 3px');
  11.         } else {
  12.           $(this).css('background-position', '0px -16px');
  13.         }
  14.       });
  15.     });
  16.   };