Answers for "get the value of a checkbox using 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
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 "get the value of a checkbox using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language