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
.mapinstead, which is perhaps more suited to your purpose: