When in he Javascript editor it shows all fields in the collection as having the same ID, "q3". However Chrome shows the actual IDs to be Field3(1), Field3(2) etc.
When I access a drop down using q3 it works correctly but accesses all fields within the drop down.
var target = $('#q3 select');
When I try to access them individually it does not work. Is there another ID for the individual fields?
var target = $('#Field3(1) select');