Template TimeSaver- Master Form V4
When creating templates for Master Form V4 (email or database) that will be accessed by your webpage form, the "place holder" is derived from the form field name on the form.
It is important that form field names/ placeholders are exactly the same.
Here's a quick way to grab all those form field names.
Place this short JavaScript below the form. It will print the form field names, in the order they appear, one name per line.
<script type="text/javascript" language="JavaScript"><!--
document.write('<pre>');
for (var i = 0; i < document.FormName.elements.length; i++) {
document.write(document.FormName.elements[i].name + "\n")
}
document.write('</pre>');
//--></script>
Both instances of "FormName" in the JavaScript must be replaced with the name assigned to the form. That would be the name="________" attribute in the <form...> tag. (If your form doesn't have a name, it will need one to use this JavaScript.)
When you have finished making your templates for your form, remove this JavaScript and upload the page to your server.
Note: This JavaScript could be used for forms other than those used by Master Form V4, too.
Will Bontrager

