I am trying to add a new upload field to my form. Its not working to well ;(. Here's what I got.
my JS:
<script type="text/javascript" language="javascript"> function addNewUploadField() { document.getElementById("files").appendChild("Test<br>"); } </script>
my HTML:
<div id="files"></div>
<tr>
<td><strong></strong></td>
<td><label><input type="submit" name="SubmitForm" value=" Go " /></label></td>
</tr>
</table>
</form>
<a href="#" onclick="addNewUploadField()">Add Another File</a>