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

'createTHead()' Syntax, Parameters and Note

Note:

These methods create empty <thead> rows for the table.
    
Syntax:
    
document.getElementById("tableID").createTFoot()
document.all.tableID.createTFoot() // IE only 
document.getElementById("tableID").createTHead()
document.all.tableID.createTHead() // IE only

    

      
      








Related examples in the same category

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