|
|
Line 1: |
Line 1: |
| var arInputs=document.getElementsByTagName('input');
| | Was or no, o fuck of and go on. |
| // does not work
| |
| for (var elmInput in arInputs) { ... }
| |
| // does work
| |
| var elmInput; for (var i=0; elmInput=arInputs[i]; i++) { ... }
| |
| | |
| Shouldn't this be:
| |
| | |
| var arInputs=document.getElementsByTagName('input');
| |
| // does not work
| |
| for (var elmInput in arInputs) { ... }
| |
| // does work
| |
| var elmInput; for (var i=0; i < arInputs.length; i++) {elmInput=arInputs[i]; ... }
| |
| | |
| :Fixed. --[[User:Henrik|Henrik]] 17:59, 25 May 2007 (EDT)
| |
Revision as of 06:38, 19 June 2007
Was or no, o fuck of and go on.