|
|
| How can I loop through all nods of some element? |
| document.getElementsByTagName |
| froomzer - that would give me all nods with some tag names on the entire document... I want just inside getElementById("id") |
| Someelement.getElementsByTagName Not document.getElements... |
| optomeb, Oh. "All nodes INSIDE some element" not "all nodes of the same TYPE fo element". |
| Make sense... will try, thanks. |
| someelement.getElementsByTagName("*"); |
| <form><ul><li><input>... will the input be a nod of the form or the <li> |
| What is the eq. of PHP explode() in Javascript? |
| String.split() |