Skip to content

Instantly share code, notes, and snippets.

@opi
Created November 29, 2012 17:39
Show Gist options
  • Select an option

  • Save opi/4170666 to your computer and use it in GitHub Desktop.

Select an option

Save opi/4170666 to your computer and use it in GitHub Desktop.
radio/checkbox parent class
$("[type='radio']").change(function(){
$(this)
.filter(':checked')
.parent().addClass('checked')
.siblings().removeClass('checked')
});
$("[type='checkbox']").change(function(){
if ($(this).checked) {
$(this).parent().addClass('checked')
}
else {
$(this).parent().removeClass('checked')
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment