xxxxxxxxxx
//option 1:
checkboxes.filter(":checked").map(function () {
return this.value;
}).get()
//Option 2
var selected = [];
$('[name="price[]"]:checked').each(function(checkbox) {
selected.push(checkbox);
});
xxxxxxxxxx
// Assuming the checkboxes have a common class or identifier
var checkedCheckboxes = $('input[type="checkbox"]:checked');
// Loop through each checked checkbox and retrieve their values
checkedCheckboxes.each(function() {
var checkboxValue = $(this).val();
console.log(checkboxValue);
});
xxxxxxxxxx
// Select all checked checkboxes using jQuery
var checkedCheckboxes = $('input[type="checkbox"]:checked');
// Loop through the checked checkboxes to access their values
checkedCheckboxes.each(function() {
var value = $(this).val(); // Get the value of each checked checkbox
console.log(value); // Output the value (you can modify or use it as needed)
});
xxxxxxxxxx
<input type="checkbox" name="locationthemes" id="checkbox-1" value="2" class="custom" />
<label for="checkbox-1">Castle</label>
<input type="checkbox" name="locationthemes" id="checkbox-2" value="3" class="custom" />
<label for="checkbox-2">Barn</label>
<input type="checkbox" name="locationthemes" id="checkbox-3" value="5" class="custom" />
<label for="checkbox-3">Restaurant</label>
<input type="checkbox" name="locationthemes" id="checkbox-4" value="8" class="custom" />
<label for="checkbox-4">Bar</label>