'lastChild' Syntax and Note : lastChild « Javascript Properties « JavaScript Reference

'lastChild' Syntax and Note

Note:

Read-only property. 
Returns the last child in the childNodes.
    
Syntax:
    
document.getElementById("elementID").lastChild
document.all.elementID.lastChild // IE only

    

      
      








Related examples in the same category

1.'lastChild' Example
2.'lastChild' is applied to