I have 5 inputs checkbox, select 3 and when you want to see the number selected with this function I get the number 3 correctly
$('.pf-fdc-setting .class-users .class-role input:checked').length(); // 3
but if I want to get the 3 values, just send me 1 single value with this function
$('.pf-fdc-setting .class-users .class-role input:checked').val(); // one-value
How can I get the 3 values selected?