I have a form which allows the user to create extra \"rows\" using JQuery (using .clone) so that they can decide how many of the same information they need to submit. My iss
I ended up realising that (blush) the mechanism which JQuery uses to find the string within the cloned row (to replace) is basically regex. Thus I just needed to escape the square brackets and period. Once I did this I was able use JQuery to create form as Phil Haack's blog suggested.
Onto my next issue...!