how to create table header dynamically in jquery code example
Example: add table header dynamically in jquery
$("#Table th").each(function () {
$(this).text("Dummy text")
})
$("#Table th").each(function () {
$(this).text("Dummy text")
})