Skip to content

Instantly share code, notes, and snippets.

@kenu
Created June 17, 2014 18:56
Show Gist options
  • Save kenu/3b0a2fa30157158e67ec to your computer and use it in GitHub Desktop.
Save kenu/3b0a2fa30157158e67ec to your computer and use it in GitHub Desktop.
checkAll
$("#checkAll").on("click", function(){
var sts = $("#checkAll").attr("checked") == "checked";
$('input[name="code"]').attr("checked", sts);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment