Skip to content

Instantly share code, notes, and snippets.

@handcrafted
Created August 17, 2009 14:06
Show Gist options
  • Save handcrafted/169137 to your computer and use it in GitHub Desktop.
Save handcrafted/169137 to your computer and use it in GitHub Desktop.
$("a.select_all").click(function(){
$(this).parents("div.resource_form form").find("input[type='checkbox']").attr("checked", "checked");
return false;
});
$("a.unselect_all").click(function(){
$(this).parents("div.resource_form form").find("input[type='checkbox']").attr("checked", "");
return false;
});
$(document).ready(function(){
$(".more_actions %input[type=submit]").hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment