converts the html tables which are created by string concatenation to dom table objects
html table string to dom table
function ConvertHtmlTableToDom(tableString)
{
var tempDiv = document.createElement("div");
tempDiv.innerHTML = tableString;
var domTable = tempDiv.firstChild;
return domTable;
}
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.