Given an unknown number of dynamically produced text inputs:
for (var i = 0; i < numInputs2Render; i++) {
collectEmails = collectEmails + '<input type="text" id="Email' + i + '" name="Email' + i + '">';
}
I need to produce a comma delimited string of the combined input values. Does jQuery give me a one-step solution or will i need to iterate and manually construct the string? (if if manually...how's that look?)
thx