Skip to content

Instantly share code, notes, and snippets.

@virtualmayur
Created January 29, 2016 06:00
Show Gist options
  • Save virtualmayur/ec686bd434893adb6a02 to your computer and use it in GitHub Desktop.
Save virtualmayur/ec686bd434893adb6a02 to your computer and use it in GitHub Desktop.
// Getting all the checkbox value in a comma seperated array using jquery
var checkbox Values = $('input:checkbox:checked').map(function() {
return this.value;
}).get();
// End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment