Answers for "How to get the values of selected checkboxes in a group using jQuery php"

2

jquery get value checkbox checked

console.log($('input[name="locationthemes"]:checked').serialize());

//or

$('input[name="locationthemes"]:checked').each(function() {
   console.log(this.value);
});
Posted by: Guest on August-01-2020

Code answers related to "How to get the values of selected checkboxes in a group using jQuery php"

Code answers related to "Javascript"

Browse Popular Code Answers by Language