I have x number of input fields with class='agency_field'. How can I create a JS array that contain the values of all fields with this class?
Using jQuery, this gives a syntax error:
$(".agency_field").each(function(index) { agencies[] = $(this).val(); });
You can use .map
instead, which is perhaps more suited to your purpose:
var values = $(".agency_field").map(function() {
return this.value;
}).get();
alert(values.join(","));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With