Skip to content

Instantly share code, notes, and snippets.

@dev0x10
Last active January 2, 2016 11:09
Show Gist options
  • Select an option

  • Save dev0x10/8294490 to your computer and use it in GitHub Desktop.

Select an option

Save dev0x10/8294490 to your computer and use it in GitHub Desktop.
Get all checked checkbox and return it as string
function getCheckedStudents() {
var students = $("input[name=student]:checked")
.map(function () {
return this.value;
}).get().join(", ");
return students;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment