Answers for "how to get value of checkbox jquery"

2

get value of selected checkbox jquery

$('#checkbox_id:checked').val();
//if checkbox is selected than gets its value
Posted by: Guest on October-20-2020
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
0

check checkbox based on value using jquery

$.each(arrayValues, function(i, val){

   $("input[value='" + val + "']").prop('checked', true);

});
Posted by: Guest on November-18-2020

Code answers related to "how to get value of checkbox jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language