I have an input like follows:
I\'d like to be able to append a value to th
I believe the .append() function is exactly for this purpose. I just tried:
.append()
$("#attachment-uuids").append(new_val);
to append values to a field. This works and "attachment-uuids" is populated with CSVs, as required.