jordanisip (owner)

Revisions

gist: 100835 Download_button fork
public
Public Clone URL: git://gist.github.com/100835.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
8
9
10
11
  $(function() {
    $('.checkbox input:checkbox').change(function(){
      var service = $(this).parent().next().find('label:first');
 
      if($(this).is(':checked')) {
        service.addClass('active');
     } else {
       service.removeClass('active');
     }
   }).triggerHandler('change');
  });