Skip to content

Instantly share code, notes, and snippets.

@liuxd
Last active July 20, 2021 22:29
Show Gist options
  • Save liuxd/d336b25638f8af574721a02c579e0d86 to your computer and use it in GitHub Desktop.
Save liuxd/d336b25638f8af574721a02c579e0d86 to your computer and use it in GitHub Desktop.
[Get checkbox values] #jQuery
let PriceGroups = [];
$('input[name="price_group"]:checked').each(function(){
PriceGroups.push($(this).val());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment