I have a form, that has about 100 fields. It currently has no hidden inputs within it. When I hit the submit button, I would like to call a javascript function which will:
1) Dynamically create 100 hidden fields
2) After I pupulate them, I would like to submit to another page.
This makes it difficult for the user to see it, and makes the page smaller in file size.
I have the change page done. How do I create a new form element. I would think I could do something like:
document.add.input
Then set the settings. It is the call to create the element and then apply it, that I don't know.
Any help would be appreciated.
1) Dynamically create 100 hidden fields
2) After I pupulate them, I would like to submit to another page.
This makes it difficult for the user to see it, and makes the page smaller in file size.
I have the change page done. How do I create a new form element. I would think I could do something like:
document.add.input
Then set the settings. It is the call to create the element and then apply it, that I don't know.
Any help would be appreciated.