Skip to content

Instantly share code, notes, and snippets.

@boxxxie
Created October 20, 2011 17:49
Show Gist options
  • Save boxxxie/1301787 to your computer and use it in GitHub Desktop.
Save boxxxie/1301787 to your computer and use it in GitHub Desktop.
$(html).find('.checkAlltimes').first()
.toggle(function() {
$(this).prop('checked', 'checked');
$(this).parents('li').find('.startTime, .endTime')
.each(function(){
$(this).parent().hide();
});
}, function() {
$(this).prop('checked', false);
$(this).parentsUntil('select').find(".startTime, .endTime")
.each(function(){
$(this).parent().show();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment