I currently have ten text fields within a single div
. I am interested in including another set of ten text fields with the same name, class
, and id
.
Is there a way to recycle the existing DOM structure mentioned above, or will I need to generate and add the additional text boxes using jQuery?
While I have attempted creating and appending new elements, my ultimate goal is to repurpose the already established DOM structure rather than starting from scratch.