Dodaj nagłówek tabeli dynamicznie w jQuery
$("#Table th").each(function () {
$(this).text("Dummy text")
})
Itchy Iguana
$("#Table th").each(function () {
$(this).text("Dummy text")
})
$(function(){
var someRow= "<tr class='someClass' ><th id='header1' >text1</th><th>text2</th></tr>"; // add resources
$("#Table").append(someRow);
$("#header1").text("Banana");
});