'deleteTFoot()' Syntax, Parameters and Note : deleteTFoot « Javascript Methods « JavaScript Reference

'deleteTFoot()' Syntax, Parameters and Note

Note:

These methods delete a <tfoot> element from its parent element.
    
Syntax:
    
document.getElementById("elementID").deleteTFoot()
document.all.elementID.deleteTFoot() // IE only 
document.getElementById("elementID").deleteTHead()
document.all.elementID.deleteTHead() // IE only

    

      
      








Related examples in the same category

1.'deleteTFoot()' Example
2.'deleteTFoot()' is applied to