document.getElementById("someFormId").elements;
This collection will also contain <select>, <textarea> and <button> elements (among others), but you probably want that.
document.getElementById("someFormId").elements;
This collection will also contain <select>, <textarea> and <button> elements (among others), but you probably want that.