Skip to content

Instantly share code, notes, and snippets.

@mrfelton
Created March 19, 2012 14:37
Show Gist options
  • Select an option

  • Save mrfelton/2114549 to your computer and use it in GitHub Desktop.

Select an option

Save mrfelton/2114549 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$(".option_item").click(function (e) {
if (e.target.tagName != 'INPUT') {
$(this).find("input").toggleCheckbox();
return false;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment