This example uses the nextSibling property to obtain the next item in the list. <SCRIPT> // returns the list item labeled 'List Item 2' var oSibling = oList.childNodes(0).nextSibling; </SCRIPT> <BODY> <UL ID = oList> <LI>List Item 1 <LI>List Item 2 <LI>List Item 3 </UL> <...