Miscellany
public html v1 · immutable<table> <tr> <td> <input id = 'myInput' type = 'text'> </td> </tr> <tr> <td> <input type = 'text'> </td> </tr> </table>myobj=document.getElementById("myInput");I want to traverse from myobj to the 2nd inputsoSecondInput = myobj.parentNode.nextSibling.firstChild;