If you open the CSS and Javascript pane on the Forms editor, you will see each field or HTML block has an id# referenced as id=q1, id=q#2 etc
It appears that once these are created, they are unique forever on a given form even if you delete a field that uses that number. No future field will ever use that same number on this form.
I have a block of javascript that I am dropping in to multiple Forms, and to make it stay consistent, I am dropping it in as a .getScript call in the Javascript pane. That way I can make future updates to the javascript and have that update on all Forms it references.
This javascript references specific field ID#s. The same 4 fields will be on every Form I drop this in to. I need to go back to previous Forms that have id#s and use the id#s that my script references.
Is there a way outside of the GUI interface to go and change the id#s of certain fields on the Form? Obviously I need to ensure no other active field uses the same id# before changing a field to that id#.
Thank you!