Answers for "how to get the value of checked checkbox in jquery on the click of the button"

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
1

how to get checked value of checkbox in jquery

$("#check").change(function () {
            if (this.checked) {
                //I am checked
                name_val = $('#name').val();
                $('#player').val(name_val);
            } else {
                //I'm not checked
                $('#player').val('');
            }
        });
Posted by: Guest on September-20-2021

Code answers related to "how to get the value of checked checkbox in jquery on the click of the button"

Code answers related to "Javascript"

Browse Popular Code Answers by Language