RobG wrote:
If myElem is the ID of the form, that will containt all the child nodes, you will then iterate over all of them. To get just the controls with the same name:var controls = $('myElem').elements;
This is completely Prototype syntax. In jQuery it looks like: var controls = $('#myElem')[0].elements; -- Klaus