Hi guys,
I have a form with many text fields that are created from another program (java)
<input type=text name = 'myname1'>
<input type=text name = 'myname2'>
<input type=text name = 'myname3'>
.
.
.
.
.
and I have a javascript that loops through these text fields
for (var x = 1; x <= numberoftextfields; x++)
{
document.FormName.myname+x+.value = 'Test';
}
This javascript does not work.
Can somebody assist me on this.
Thanks in advance