I've some fields that use an array as name like this :
<select name="attr[address][#ID]">
<textarea name="address[#ID][cp]" placeholder="CP"></textarea>
I would like to change the therm "#ID" of all the fields with an unqiue ID using jQuery, is it possible to use something like regex with the .attr() function in order to change the #ID ?
Regards, Adrien