i have a series of <input> and <select> items intermingled. i want to populate an array with these items as they appear on the page.
i created the inputItemsArray and the selectItemsArray the same way:
var inputItemsArray = document.getElementsById("formGroup").getElementsByTag("input");
var inputSelectArray = document.getElementsById("formGroup").getElementsByTag("select");
the input array works out just fine. the select array returns undefined. why?
what i'm trying to do is splice the contents of the submit array into the input array and THEN dump the values of those elements into a final array.
it works fine if i just use the input array, but because the select array is undefined...
here's the code:
var clientInputArray = document.getElementById("clientData").getElementsByTagName("input");
var clientSelectAray = document.getElementById("clientData").getElementsByTagName("select");
clientInputArray.splice(4,0,clientSelectArray[0]); // insert townType into array
clientInputArray.splice(5,0,clientSelectArray[1]); // insert province into array
console.log("clientInputArray: " + clientInputArray);
for (data in clientArray)
{
if (clientArray[data].length != 0)
{
clientData.push(clientArray[data].value);
console.log("data: " + data);
} else { // because the last two elements of the array are empty...don't know why...
break;
}
}
console.log("clientData: " + clientData);
//clientData.push(companyName);
so, to restate: why does the select version return undefined?
WR!