Gee you would never think this would be the case but...<br>
<br>
When I execute a javascript function (containing the statement below) from an onclick button event the following happens:<br>
<br>
In IE I get returned the count of array elements associated with the QuantityOrdered input text box. In other words I have 'n' number of like named input text boxes and am trying to determine the count.<br>
<br>
In IE..success...I get a dialog box count of the number of input text box elements.<br>
<br>
In Netscape I get....nothing!<br>
<br>
alert(document.all.item("QuantityOrdered").length);<br>
<br>
Now 'alert' is not the end goal here. I am attempting to wip through the collection of text boxes to do some edit checks. The edit check works correctly in IE but appears to be ignored in Netscape.<br>
<br>
Any ideas?<br>
<br>
Thanks in advance.
<br>
When I execute a javascript function (containing the statement below) from an onclick button event the following happens:<br>
<br>
In IE I get returned the count of array elements associated with the QuantityOrdered input text box. In other words I have 'n' number of like named input text boxes and am trying to determine the count.<br>
<br>
In IE..success...I get a dialog box count of the number of input text box elements.<br>
<br>
In Netscape I get....nothing!<br>
<br>
alert(document.all.item("QuantityOrdered").length);<br>
<br>
Now 'alert' is not the end goal here. I am attempting to wip through the collection of text boxes to do some edit checks. The edit check works correctly in IE but appears to be ignored in Netscape.<br>
<br>
Any ideas?<br>
<br>
Thanks in advance.