View Single Post
12-15-2006, 11:25 PM
#3
MaxS is offline MaxS
Status: Senior Member
Join date: Aug 2005
Location: New York
Expertise:
Software:
 
Posts: 825
iTrader: 1 / 100%
 

MaxS is on a distinguished road

  Old

Here's a snippet from one of my sites.

Code:
var fUploads = 0;
function addField()
{
document.getElementById('fields').innerHTML = document.getElementById('fields').innerHTML + "<input type=\"file\" name=\"uploads[" + fUploads + "]\" /><br />";
fUploads++;
}
Code:
<a href="javascript:addField();">Add Field</a>
You should be able to figure it out from there. If not, just post back.