Skip to content

Instantly share code, notes, and snippets.

@pzzrudlf
Created November 5, 2015 05:35
Show Gist options
  • Save pzzrudlf/c5ea431b99733334da51 to your computer and use it in GitHub Desktop.
Save pzzrudlf/c5ea431b99733334da51 to your computer and use it in GitHub Desktop.
var checkbox_value = [];
$('input[name="chk"]:checked').each(function(){
checkbox_value.push($(this).val());
});
console.log(checkbox_value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment