Skip to content

Instantly share code, notes, and snippets.

@victorono
Created December 27, 2016 21:06
Show Gist options
  • Save victorono/2cd905482123b6824ccc2b8ecb41b326 to your computer and use it in GitHub Desktop.
Save victorono/2cd905482123b6824ccc2b8ecb41b326 to your computer and use it in GitHub Desktop.
jQuery mark all input checkbox
$('input[type=checkbox]').map(function(){
return $(this).val();
});
$('input[type=checkbox]:checked').map(function(){
return $(this).val();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment