Answers

Oct 19, 2007 - 08:42 AM
Change the first lines to:
...
Change the button to:
Add this javascript function somewhere:
function addNewRecord()
{
var record = document.getElementById("record");
var no = record.childNodes.length;
var newRecord = record.cloneNode(true);
newRecord.id = "record" + no;
newRecord.value = "";
newRecord.name = "uploaded" + no;
record.parentNode.appendChild(newRecord);
}

Oct 29, 2007 - 08:35 PM

Oct 29, 2007 - 08:36 PM

Oct 29, 2007 - 10:57 PM

Dec 13, 2007 - 05:22 PM

Sep 03, 2009 - 01:02 AM
Answer this question
Share Your Own Experience & Expertise
We look to ensure that every question is answered by the best people with relevant expertise and experience, the best answers include multiple perspectives. Do you have relevant expertise or experience to contribute your answer to any of these commonly asked questions?
About Quomon
Quomon is a network of IT professionals from around the world, collaborating by sharing knowledgeable answers in their specific field of expertise.

Please wait...
Add New Comment