Skip to content

Instantly share code, notes, and snippets.

@aratak
Created June 16, 2014 15:07
Show Gist options
  • Save aratak/5a54c06b313a194d7f1e to your computer and use it in GitHub Desktop.
Save aratak/5a54c06b313a194d7f1e to your computer and use it in GitHub Desktop.
checkbox-label-active.coffee
$(document).on 'click', 'input[type=checkbox]', ->
$("label[for=#{$(@).attr('id')}]").toggleClass 'checkbox-checked', $(@).is(':checked')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment