Answers for "how to select select option through checkbox in jquery"

1

jquery get selected checkboxes

var selected = [];
$('#checkboxes input:checked').each(function() {
    selected.push($(this).attr('name'));
});
Posted by: Guest on October-12-2020
0

jquery check is select

if(!$(el).is("select")) {
    // the input field is not a select
}
Posted by: Guest on August-26-2021

Code answers related to "how to select select option through checkbox in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language