Skip to content

Instantly share code, notes, and snippets.

@joemsak
Created February 4, 2011 01:36
Show Gist options
  • Save joemsak/810589 to your computer and use it in GitHub Desktop.
Save joemsak/810589 to your computer and use it in GitHub Desktop.
<div class="some-float-clearing-class">
<label><input type="checkbox" /> Some Label</label>
</div>
$('label input').change(function(){
$(this).parent().toggleClass('selected')
})
label {
display:block;
width: 150px;
float: left;
font-size: 13px;
line-height: 16px;
margin: 0 0 5px 20px;
padding: 5px;
cursor:pointer;
border-radius:3px;
-moz-border-radius:3px;
}
label:hover, label.selected{
background:#ccc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment