In the following jquery expression, I select an array of elements:
selectedSupplierIds = $('.supplierListCheckbox:checked');
I need to select identifiers from these elements. Can I do this without creating an array and pushing identifiers in a for loop?
source
share