Skip to content

Instantly share code, notes, and snippets.

@ashcdev
Created February 4, 2019 15:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ashcdev/91dbf88299bf99b6e7b45934151a3ddc to your computer and use it in GitHub Desktop.
Save ashcdev/91dbf88299bf99b6e7b45934151a3ddc to your computer and use it in GitHub Desktop.
Convert Checkboxes or Similar into Comma Separated list
var checkedVals = $('input[type=checkbox]:checked').map(function() {
return this.value;
}).get();
$(*TARGET*).val(checkedVals.join(","));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment