Skip to content

Instantly share code, notes, and snippets.

Created November 15, 2010 19:15
Show Gist options
  • Save anonymous/700801 to your computer and use it in GitHub Desktop.
Save anonymous/700801 to your computer and use it in GitHub Desktop.
$(".wizard-categories").click(function() {
$(".wizard-categories").find(":checkbox").each(function() {
$(this).attr('disabled', false);
});
$(".wizard-category-sets").find(":checkbox").each(function() {
$(this).attr('disabled', true);
});
});
$(".wizard-category-sets").click(function() {
$(".wizard-categories").find(":checkbox").each(function() {
$(this).attr('disabled', true);
});
$(".wizard-category-sets").find(":checkbox").each(function() {
$(this).attr('disabled', false);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment