Thanks

I have researched it.

I found the following sample, but I don't really know how to change the syntax 
to fit my code:






Say the form has a name of "myForm":

Then 
Code:
document.forms["myForm"].elementsis a collection of all the elements in the 
form (including dynamically generated ones).

Thus:

Code:
var elements = document.forms["myForm"].elements;
for (var i = 0; i < elements.length; i++) {
    validate(elements[i].value); // or something
}





>I would recommend you research and outline the general process on paper
>first. 
>
>You can use javascript if you like, you might also see if you can implement
>it through business rules using cold fusion code. 
>
>
>
>>





>I would recommend you research and outline the general process on paper
>first. 
>
>You can use javascript if you like, you might also see if you can implement
>it through business rules using cold fusion code. 
>
>
>
>>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:15:1904
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/15
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:15
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to